generateKey function

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

Generate seed phrase by specified mnemonic type

Implementation

Future<GeneratedKeyG> generateKey({required MnemonicType accountType}) {
  return createLib().ntGenerateKey(accountType: accountType);
}