fromEntropy static method
Implementation
static MnemonicLength fromEntropy(int entropy) {
try {
return values.firstWhere((e) => e.entropy == entropy);
} catch (e) {
throw MnemonicUnexpectedEntropyLengthException(entropy);
}
}
static MnemonicLength fromEntropy(int entropy) {
try {
return values.firstWhere((e) => e.entropy == entropy);
} catch (e) {
throw MnemonicUnexpectedEntropyLengthException(entropy);
}
}