UProductReadParams constructor

UProductReadParams({
  1. String? query,
  2. String? title,
  3. String? code,
  4. String? parentId,
  5. String? creatorId,
  6. int? minStock,
  7. int? maxStock,
  8. List<String>? ids,
  9. int? pageSize,
  10. int? pageNumber,
  11. DateTime? fromCreatedAt,
  12. DateTime? toCreatedAt,
  13. List<int>? tags,
  14. ProductSelectorArgs? selectorArgs,
  15. List<String>? categories,
  16. int? orderBy,
  17. String? slug,
})

Implementation

UProductReadParams({
  this.query,
  this.title,
  this.code,
  this.parentId,
  this.creatorId,
  this.minStock,
  this.maxStock,
  this.ids,
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.tags,
  this.selectorArgs,
  this.categories,
  this.orderBy,
  this.slug,
});