AuthenticateConfirmRequest constructor

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

Implementation

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