UUserReadParams constructor

UUserReadParams({
  1. String? userName,
  2. String? phoneNumber,
  3. String? email,
  4. String? bio,
  5. DateTime? startBirthDate,
  6. DateTime? endBirthDate,
  7. List<String>? categories,
  8. bool? showCategories,
  9. bool? showMedia,
  10. bool? orderByLastName,
  11. bool? orderByLastNameDesc,
  12. int? pageSize,
  13. int? pageNumber,
  14. DateTime? fromCreatedAt,
  15. DateTime? toCreatedAt,
  16. bool? orderByCreatedAt,
  17. bool? orderByCreatedAtDesc,
  18. bool? orderByUpdatedAt,
  19. bool? orderByUpdatedAtDesc,
  20. List<int>? tags,
})

Implementation

UUserReadParams({
  this.userName,
  this.phoneNumber,
  this.email,
  this.bio,
  this.startBirthDate,
  this.endBirthDate,
  this.categories,
  this.showCategories,
  this.showMedia,
  this.orderByLastName,
  this.orderByLastNameDesc,
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.orderByCreatedAt,
  this.orderByCreatedAtDesc,
  this.orderByUpdatedAt,
  this.orderByUpdatedAtDesc,
  this.tags,
});