Derive a seed from words. Normally you won't use this function alone.
static Uint8List deriveSeed(List<String> words) { return hexToBytes(bip39.mnemonicToSeedHex(words.join(' '))); }