StartWebAuthNRegistrationRequest constructor
StartWebAuthNRegistrationRequest({
- String? userId,
- AuthenticatorRegistrationCode? code,
- WebAuthNAuthenticatorType? authenticatorType,
- String? domain,
Implementation
factory StartWebAuthNRegistrationRequest({
$core.String? userId,
$4.AuthenticatorRegistrationCode? code,
$4.WebAuthNAuthenticatorType? authenticatorType,
$core.String? domain,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (code != null) {
$result.code = code;
}
if (authenticatorType != null) {
$result.authenticatorType = authenticatorType;
}
if (domain != null) {
$result.domain = domain;
}
return $result;
}