UUserCreateParams constructor

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

Implementation

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