copyWith method
Implementation
CheckAuthenticationPasskey copyWith({
String? credentialId,
String? clientData,
String? authenticatorData,
String? signature,
String? userHandle,
}) => CheckAuthenticationPasskey(
credentialId: credentialId ?? this.credentialId,
clientData: clientData ?? this.clientData,
authenticatorData: authenticatorData ?? this.authenticatorData,
signature: signature ?? this.signature,
userHandle: userHandle ?? this.userHandle,
);