AuthStep constructor

AuthStep({
  1. String? fallbackUrl,
  2. bool? canGoBack,
  3. AuthStep_Choice? choice,
  4. AuthStep_Form? form,
  5. Session? session,
  6. AuthStep_Waiting? waiting,
})

Implementation

factory AuthStep({
  $core.String? fallbackUrl,
  $core.bool? canGoBack,
  AuthStep_Choice? choice,
  AuthStep_Form? form,
  Session? session,
  AuthStep_Waiting? waiting,
}) {
  final _result = create();
  if (fallbackUrl != null) {
    _result.fallbackUrl = fallbackUrl;
  }
  if (canGoBack != null) {
    _result.canGoBack = canGoBack;
  }
  if (choice != null) {
    _result.choice = choice;
  }
  if (form != null) {
    _result.form = form;
  }
  if (session != null) {
    _result.session = session;
  }
  if (waiting != null) {
    _result.waiting = waiting;
  }
  return _result;
}