mnemonicToEntropy static method

Future<Entropye> mnemonicToEntropy(
  1. String mnemonic
)

generate entropy from mnemonic

Implementation

static Future<Entropye> mnemonicToEntropy(String mnemonic) async {
  final result = await api.pubMnemonicToEntropy(mnemonicWords: mnemonic);
  return Entropye(result);
}