deriveSeed static method

Uint8List deriveSeed(
  1. List<String> words
)

Derive a seed from words. Normally you won't use this function alone.

Implementation

static Uint8List deriveSeed(List<String> words) {
  return hexToBytes(bip39.mnemonicToSeedHex(words.join(' ')));
}