StartWebAuthNRegistration constructor

StartWebAuthNRegistration({
  1. String? domain,
  2. WebAuthNAuthenticatorType? authenticatorType,
  3. 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;
}