Input$LoginUserByTargetInput constructor

Input$LoginUserByTargetInput({
  1. String? email,
  2. String? lastName,
  3. String? firstName,
  4. String? reference,
  5. required String identifier,
  6. required String locale,
  7. required Enum$MobileThemesEnum theme,
  8. Input$IPhoneInput? phone,
  9. Input$TargetACIInput? target,
})

Implementation

factory Input$LoginUserByTargetInput({
  String? email,
  String? lastName,
  String? firstName,
  String? reference,
  required String identifier,
  required String locale,
  required Enum$MobileThemesEnum theme,
  Input$IPhoneInput? phone,
  Input$TargetACIInput? target,
}) =>
    Input$LoginUserByTargetInput._({
      if (email != null) r'email': email,
      if (lastName != null) r'lastName': lastName,
      if (firstName != null) r'firstName': firstName,
      if (reference != null) r'reference': reference,
      r'identifier': identifier,
      r'locale': locale,
      r'theme': theme,
      if (phone != null) r'phone': phone,
      if (target != null) r'target': target,
    });