Input$UserUpdateInput constructor

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

Implementation

factory Input$UserUpdateInput({
  String? permission,
  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,
  List<Enum$UserRole>? roles,
  List<Enum$App>? apps,
  String? phoneNumber,
  String? email,
  String? username,
  Input$IPhoneInput? phone,
  String? vapidKey,
}) =>
    Input$UserUpdateInput._({
      if (permission != null) r'permission': permission,
      if (password != null) 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,
      if (roles != null) r'roles': roles,
      if (apps != null) r'apps': apps,
      if (phoneNumber != null) r'phoneNumber': phoneNumber,
      if (email != null) r'email': email,
      if (username != null) r'username': username,
      if (phone != null) r'phone': phone,
      if (vapidKey != null) r'vapidKey': vapidKey,
    });