removeAccount method

Future<void> removeAccount(
  1. String? pubKey
)

Implementation

Future<void> removeAccount(String? pubKey) async {
  return storage.removeItemFromList(accountsKey, 'pubKey', pubKey);
}