mnemonic_from_random method
Generates a random mnemonic from the specified dictionary and word count
Implementation
Future<ResultOfMnemonicFromRandom> mnemonic_from_random(
ParamsOfMnemonicFromRandom params) async {
final res = await _tonCore.request(
'crypto.mnemonic_from_random', params.toString());
return ResultOfMnemonicFromRandom.fromMap(res);
}