VerifyU2FRegistrationRequest constructor
VerifyU2FRegistrationRequest({})
Implementation
factory VerifyU2FRegistrationRequest({
$core.String? userId,
$core.String? u2fId,
$1.Struct? publicKeyCredential,
$core.String? tokenName,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (u2fId != null) {
$result.u2fId = u2fId;
}
if (publicKeyCredential != null) {
$result.publicKeyCredential = publicKeyCredential;
}
if (tokenName != null) {
$result.tokenName = tokenName;
}
return $result;
}