UUserCreateParams constructor

UUserCreateParams({
  1. required String userName,
  2. required String password,
  3. required List<int> tags,
  4. String? phoneNumber,
  5. String? email,
  6. String? landLine,
  7. String? firstName,
  8. String? lastName,
  9. String? nationalCode,
  10. String? bio,
  11. DateTime? birthdate,
  12. double? weight,
  13. double? height,
  14. String? fatherName,
  15. String? fcmToken,
  16. List<String>? categories,
  17. String? nationalCardFront,
  18. String? nationalCardBack,
  19. String? birthCertificateFirst,
  20. String? birthCertificateSecond,
  21. String? birthCertificateThird,
  22. String? birthCertificateForth,
  23. String? birthCertificateFifth,
  24. String? visualAuthentication,
  25. String? eSignature,
  26. String? detail1,
  27. String? detail2,
  28. String? id,
  29. String? creatorId,
  30. List<String>? adminUserIds,
})

Implementation

UUserCreateParams({
  required this.userName,
  required this.password,
  required this.tags,
  this.phoneNumber,
  this.email,
  this.landLine,
  this.firstName,
  this.lastName,
  this.nationalCode,
  this.bio,
  this.birthdate,
  this.weight,
  this.height,
  this.fatherName,
  this.fcmToken,
  this.categories,
  this.nationalCardFront,
  this.nationalCardBack,
  this.birthCertificateFirst,
  this.birthCertificateSecond,
  this.birthCertificateThird,
  this.birthCertificateForth,
  this.birthCertificateFifth,
  this.visualAuthentication,
  this.eSignature,
  this.detail1,
  this.detail2,
  this.id,
  this.creatorId,
  this.adminUserIds,
});