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