ProductQueryModel constructor

ProductQueryModel({
  1. int? page,
  2. int? amount,
  3. bool? grouped,
  4. bool? hot,
  5. bool? home,
  6. String? storeId,
  7. String? campaignId,
  8. String? category,
  9. List<String>? tags,
  10. List<String>? features,
  11. ProductSortType? sort,
  12. String? campaign,
  13. String? brand,
  14. String? search,
})

Implementation

ProductQueryModel({
  super.page,
  super.amount,
  this.grouped,
  this.hot,
  this.home,
  this.storeId,
  this.campaignId,
  this.category,
  this.tags,
  this.features,
  this.sort,
  this.campaign,
  this.brand,
  this.search,
});