Input$UserWithTargetInput constructor

Input$UserWithTargetInput({
  1. String? email,
  2. String? username,
  3. Input$IPhoneInput? phone,
  4. String? permission,
  5. required String password,
  6. Input$PictureInput? picture,
  7. List<Input$PictureInput>? pictures,
  8. List<Input$PictureInput>? covers,
  9. String? firstName,
  10. Enum$UserStatus? status,
  11. String? title,
  12. String? about,
  13. String? lastName,
  14. Enum$MaritalStatus? maritalStatus,
  15. Enum$Gender? gender,
  16. List<String>? languages,
  17. List<Input$UserEducationInput>? education,
  18. List<Input$UserWorkInput>? work,
  19. List<String>? lived,
  20. List<String>? hobbies,
  21. List<String>? interests,
  22. bool? isMailValid,
  23. bool? plugged,
  24. DateTime? dateOfBirth,
  25. List<Input$SocialValueInput>? chatContact,
  26. List<Input$SocialValueInput>? socialMedia,
  27. String? nationality,
  28. String? locale,
  29. String? placeOfBirth,
  30. List<Input$FullAddressInput>? residentialAddress,
  31. List<Input$FullAddressInput>? shippingAddress,
  32. List<Input$FullAddressInput>? billingAddress,
  33. Enum$MobileThemesEnum? mobileTheme,
  34. Enum$SourcesEnum? source,
  35. bool? newsletterSubs,
  36. List<Input$UserCustomInput>? custom,
  37. required List<Enum$UserRole> roles,
  38. List<Enum$App>? apps,
  39. String? phoneNumber,
  40. required Input$TargetACIInput target,
  41. String? subject,
})

Implementation

factory Input$UserWithTargetInput({
  String? email,
  String? username,
  Input$IPhoneInput? phone,
  String? permission,
  required String password,
  Input$PictureInput? picture,
  List<Input$PictureInput>? pictures,
  List<Input$PictureInput>? covers,
  String? firstName,
  Enum$UserStatus? status,
  String? title,
  String? about,
  String? lastName,
  Enum$MaritalStatus? maritalStatus,
  Enum$Gender? gender,
  List<String>? languages,
  List<Input$UserEducationInput>? education,
  List<Input$UserWorkInput>? work,
  List<String>? lived,
  List<String>? hobbies,
  List<String>? interests,
  bool? isMailValid,
  bool? plugged,
  DateTime? dateOfBirth,
  List<Input$SocialValueInput>? chatContact,
  List<Input$SocialValueInput>? socialMedia,
  String? nationality,
  String? locale,
  String? placeOfBirth,
  List<Input$FullAddressInput>? residentialAddress,
  List<Input$FullAddressInput>? shippingAddress,
  List<Input$FullAddressInput>? billingAddress,
  Enum$MobileThemesEnum? mobileTheme,
  Enum$SourcesEnum? source,
  bool? newsletterSubs,
  List<Input$UserCustomInput>? custom,
  required List<Enum$UserRole> roles,
  List<Enum$App>? apps,
  String? phoneNumber,
  required Input$TargetACIInput target,
  String? subject,
}) =>
    Input$UserWithTargetInput._({
      if (email != null) r'email': email,
      if (username != null) r'username': username,
      if (phone != null) r'phone': phone,
      if (permission != null) r'permission': permission,
      r'password': password,
      if (picture != null) r'picture': picture,
      if (pictures != null) r'pictures': pictures,
      if (covers != null) r'covers': covers,
      if (firstName != null) r'firstName': firstName,
      if (status != null) r'status': status,
      if (title != null) r'title': title,
      if (about != null) r'about': about,
      if (lastName != null) r'lastName': lastName,
      if (maritalStatus != null) r'maritalStatus': maritalStatus,
      if (gender != null) r'gender': gender,
      if (languages != null) r'languages': languages,
      if (education != null) r'education': education,
      if (work != null) r'work': work,
      if (lived != null) r'lived': lived,
      if (hobbies != null) r'hobbies': hobbies,
      if (interests != null) r'interests': interests,
      if (isMailValid != null) r'isMailValid': isMailValid,
      if (plugged != null) r'plugged': plugged,
      if (dateOfBirth != null) r'dateOfBirth': dateOfBirth,
      if (chatContact != null) r'chatContact': chatContact,
      if (socialMedia != null) r'socialMedia': socialMedia,
      if (nationality != null) r'nationality': nationality,
      if (locale != null) r'locale': locale,
      if (placeOfBirth != null) r'placeOfBirth': placeOfBirth,
      if (residentialAddress != null)
        r'residentialAddress': residentialAddress,
      if (shippingAddress != null) r'shippingAddress': shippingAddress,
      if (billingAddress != null) r'billingAddress': billingAddress,
      if (mobileTheme != null) r'mobileTheme': mobileTheme,
      if (source != null) r'source': source,
      if (newsletterSubs != null) r'newsletterSubs': newsletterSubs,
      if (custom != null) r'custom': custom,
      r'roles': roles,
      if (apps != null) r'apps': apps,
      if (phoneNumber != null) r'phoneNumber': phoneNumber,
      r'target': target,
      if (subject != null) r'subject': subject,
    });