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 _ensureInitialized();
  await rust_signing.removeAccount(
    recoveryPrivateKey: recoveryPrivateKey.toList(),
    identifierToRemove: identifierToRemove,
  );
}