generateKey function

GeneratedKeyG generateKey({
  1. required MnemonicType accountType,
})

Generate seed phrase by specified mnemonic type

Implementation

GeneratedKeyG generateKey({required MnemonicType accountType}) {
  return ntGenerateKey(accountType: accountType);
}