VerifyWebAuthNRegistrationRequest constructor
VerifyWebAuthNRegistrationRequest({})
Implementation
factory VerifyWebAuthNRegistrationRequest({
$core.String? userId,
$core.String? webAuthNId,
$3.Struct? publicKeyCredential,
$core.String? webAuthNName,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (webAuthNId != null) {
$result.webAuthNId = webAuthNId;
}
if (publicKeyCredential != null) {
$result.publicKeyCredential = publicKeyCredential;
}
if (webAuthNName != null) {
$result.webAuthNName = webAuthNName;
}
return $result;
}