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