Auth constructor

Auth({
  1. String? challenge,
  2. String? response,
})

Implementation

factory Auth({
  $core.String? challenge,
  $core.String? response,
}) {
  final result = create();
  if (challenge != null) result.challenge = challenge;
  if (response != null) result.response = response;
  return result;
}