RegisterPasskeyRequest constructor
RegisterPasskeyRequest({
- String? userId,
- PasskeyRegistrationCode? code,
- PasskeyAuthenticator? authenticator,
- String? domain,
Implementation
factory RegisterPasskeyRequest({
$core.String? userId,
$8.PasskeyRegistrationCode? code,
$8.PasskeyAuthenticator? authenticator,
$core.String? domain,
}) {
final result = create();
if (userId != null) result.userId = userId;
if (code != null) result.code = code;
if (authenticator != null) result.authenticator = authenticator;
if (domain != null) result.domain = domain;
return result;
}