fromEntropy method

Mnemonic fromEntropy(
  1. List<int> entropyBytes
)

Encodes the given entropy bytes into a mnemonic phrase using the encoder.

Implementation

Mnemonic fromEntropy(List<int> entropyBytes) {
  return _mnemonicEncoder.encode(entropyBytes);
}