removeAccount method

  1. @override
Future<void> removeAccount(
  1. Uint8List recoveryPrivateKey,
  2. String identifierToRemove
)
override

Implementation

@override
Future<void> removeAccount(Uint8List recoveryPrivateKey, String identifierToRemove) async {
  await methodChannel.invokeMethod('removeAccount', {
    'recoveryPrivateKey': recoveryPrivateKey,
    'identifierToRemove': identifierToRemove,
  });
}