removeAccount method
Implementation
@override
Future<void> removeAccount(
Uint8List recoveryPrivateKey, String identifierToRemove) async {
await _ensureInitialized();
await rust_signing.removeAccount(
recoveryPrivateKey: recoveryPrivateKey.toList(),
identifierToRemove: identifierToRemove,
);
}