UUserUpdateParams constructor

UUserUpdateParams({
  1. required String id,
  2. String? password,
  3. String? firstName,
  4. String? lastName,
  5. String? country,
  6. String? state,
  7. String? city,
  8. String? userName,
  9. String? phoneNumber,
  10. String? email,
  11. String? bio,
  12. DateTime? birthdate,
  13. String? fcmToken,
  14. String? address,
  15. String? fatherName,
  16. int? weight,
  17. int? height,
  18. List<String>? addHealth1,
  19. List<String>? removeHealth1,
  20. List<String>? foodAllergies,
  21. List<String>? drugAllergies,
  22. List<String>? sickness,
  23. List<String>? health1,
  24. List<String>? categories,
  25. List<int>? addTags,
  26. List<int>? removeTags,
  27. List<int>? tags,
})

Implementation

UUserUpdateParams({
  required this.id,
  this.password,
  this.firstName,
  this.lastName,
  this.country,
  this.state,
  this.city,
  this.userName,
  this.phoneNumber,
  this.email,
  this.bio,
  this.birthdate,
  this.fcmToken,
  this.address,
  this.fatherName,
  this.weight,
  this.height,
  this.addHealth1,
  this.removeHealth1,
  this.foodAllergies,
  this.drugAllergies,
  this.sickness,
  this.health1,
  this.categories,
  this.addTags,
  this.removeTags,
  this.tags,
});