isValidEntropyByteLen static method
Check if a given byte length is a valid BIP39 entropy byte length.
byteLen: The byte length to check for validity.- Returns:
trueif the byte length is valid,falseotherwise.
Implementation
static bool isValidEntropyByteLen(int byteLen) {
return isValidEntropyBitLen(byteLen * 8);
}