mnemonic_words method
Prints the list of words from the specified dictionary
Implementation
Future<ResultOfMnemonicWords> mnemonic_words(
ParamsOfMnemonicWords params) async {
final res =
await _tonCore.request('crypto.mnemonic_words', params.toString());
return ResultOfMnemonicWords.fromMap(res);
}