RegisterPasskeyRequest constructor

RegisterPasskeyRequest({
  1. String? userId,
  2. PasskeyRegistrationCode? code,
  3. PasskeyAuthenticator? authenticator,
  4. 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;
}