deleteAccount method

Future<void> deleteAccount(
  1. KeyringEVM keyring,
  2. EthWalletData account
)

delete account from storage

Implementation

Future<void> deleteAccount(KeyringEVM keyring, EthWalletData account) async {
  await keyring.store.deleteAccount(account.address);
}