createWalletWithGeneratedMnemonic method
Implementation
Future<Wallet> createWalletWithGeneratedMnemonic({
required String walletName,
String passphrase = '',
}) async {
final mnemonicData = await blockchainService.generateNewWallet(
walletName: walletName, passphrase: passphrase);
return await createWalletByImportedMnemonic(
mnemonic: mnemonicData.mnemonic, walletName: walletName);
}