deleteAuth method
Implementation
@override
Future<void> deleteAuth(String credentialId, String rpId) async {
try {
final jsOptions = {'id': credentialId, 'rpId': rpId}.jsify();
await _deleteAuth(jsOptions).toDart;
} catch (e) {
throw Exception('DeleteAuth failed: $e');
}
}