ProductCatalogQuery constructor

ProductCatalogQuery({
  1. int? page,
  2. int? amount,
  3. String? productId,
  4. String? catalogId,
  5. String? storeId,
})

Implementation

ProductCatalogQuery({
  super.page,
  super.amount,
  this.productId,
  this.catalogId,
  this.storeId,
});