ParamsOfMnemonicVerify constructor

ParamsOfMnemonicVerify(
  1. {@required String phrase,
  2. int dictionary,
  3. int word_count}
)

Implementation

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