CredentialDeletedEvent.fromJson constructor
Implementation
factory CredentialDeletedEvent.fromJson(Map<String, dynamic> json) {
return CredentialDeletedEvent(
authenticatorId: AuthenticatorId.fromJson(
json['authenticatorId'] as String,
),
credentialId: json['credentialId'] as String,
);
}