ParamsOfMnemonicVerify constructor
Implementation
ParamsOfMnemonicVerify({
@required String phrase,
int dictionary,
int word_count,
}) {
_phrase =
ArgumentError.checkNotNull(phrase, 'ParamsOfMnemonicVerify phrase');
_dictionary = dictionary;
_word_count = word_count;
}