fromEntropy static method

MnemonicLength fromEntropy(
  1. int entropy
)

Implementation

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