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 WebAuthnWebException(
'deleteAuth',
'Credential deletion failed. Check rpId domain match and that the credential exists.',
e,
);
}
}