UUserReadParams constructor

UUserReadParams({
  1. String? query,
  2. String? userName,
  3. String? landLine,
  4. String? firstName,
  5. String? lastName,
  6. String? nationalCode,
  7. String? phoneNumber,
  8. String? email,
  9. String? bio,
  10. DateTime? startBirthDate,
  11. DateTime? endBirthDate,
  12. List<String>? categories,
  13. int? pageSize,
  14. int? pageNumber,
  15. DateTime? fromCreatedAt,
  16. DateTime? toCreatedAt,
  17. List<int>? tags,
  18. UserSelectorArgs? selectorArgs,
  19. int? orderBy,
  20. List<String>? ids,
  21. String? creatorId,
})

Implementation

UUserReadParams({
  this.query,
  this.userName,
  this.landLine,
  this.firstName,
  this.lastName,
  this.nationalCode,
  this.phoneNumber,
  this.email,
  this.bio,
  this.startBirthDate,
  this.endBirthDate,
  this.categories,
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.tags,
  this.selectorArgs,
  this.orderBy,
  this.ids,
  this.creatorId,
});