fromEntropy method
Generate a BIP39 mnemonic phrase from the provided entropy bytes.
Parameters:
entropyBytes: The entropy bytes to encode into a mnemonic phrase.
Implementation
Mnemonic fromEntropy(List<int> entropyBytes) {
return _mnemonicEncoder.encode(entropyBytes);
}