ProductQuery constructor

ProductQuery({
  1. int? page,
  2. int? amount,
  3. String? storeId,
  4. bool? grouped,
  5. String? search,
  6. ProductSort? sort,
  7. String? category,
  8. String? brand,
  9. List<String>? tags,
  10. List<String>? features,
})

Implementation

ProductQuery({
  super.page,
  super.amount,
  this.storeId,
  this.grouped,
  this.search,
  this.sort,
  this.category,
  this.brand,
  this.tags,
  this.features,
});