StartWebAuthNRegistrationRequest constructor

StartWebAuthNRegistrationRequest({
  1. String? userId,
  2. AuthenticatorRegistrationCode? code,
  3. WebAuthNAuthenticatorType? authenticatorType,
  4. 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;
}