encode method
Encodes the provided entropy bytes into a Monero mnemonic without a checksum.
-entropyBytes: The entropy bytes to encode.
Implementation
@override
Mnemonic encode(List<int> entropyBytes) {
return Mnemonic.fromList(_encodeToList(entropyBytes));
}