UProductReadParams constructor

UProductReadParams({
  1. String? query,
  2. String? title,
  3. String? code,
  4. String? parentId,
  5. String? userId,
  6. int? minStock,
  7. int? maxStock,
  8. double? minPrice,
  9. double? maxPrice,
  10. bool? showCategories,
  11. bool? showCategoriesMedia,
  12. bool? showMedia,
  13. bool? showUser,
  14. bool? showUserMedia,
  15. bool? showUserCategory,
  16. bool? showChildren,
  17. bool? showChildrenDepth,
  18. List<String>? ids,
  19. int? pageSize,
  20. int? pageNumber,
  21. DateTime? fromCreatedAt,
  22. DateTime? toCreatedAt,
  23. bool? orderByCreatedAt,
  24. bool? orderByCreatedAtDesc,
  25. bool? orderByUpdatedAt,
  26. bool? orderByUpdatedAtDesc,
  27. List<int>? tags,
  28. bool? showCommentCount,
  29. bool? showIsFollowing,
  30. bool? showChildrenCount,
})

Implementation

UProductReadParams({
  this.query,
  this.title,
  this.code,
  this.parentId,
  this.userId,
  this.minStock,
  this.maxStock,
  this.minPrice,
  this.maxPrice,
  this.showCategories,
  this.showCategoriesMedia,
  this.showMedia,
  this.showUser,
  this.showUserMedia,
  this.showUserCategory,
  this.showChildren,
  this.showChildrenDepth,
  this.ids,
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.orderByCreatedAt,
  this.orderByCreatedAtDesc,
  this.orderByUpdatedAt,
  this.orderByUpdatedAtDesc,
  this.tags,
  this.showCommentCount,
  this.showIsFollowing,
  this.showChildrenCount,
});