CatalogProductSet constructor

CatalogProductSet({
  1. String? name,
  2. bool? allProducts,
  3. List<String>? productIdsAll,
  4. List<String>? productIdsAny,
  5. int? quantityExact,
  6. int? quantityMax,
  7. int? quantityMin,
})

Implementation

CatalogProductSet({
  this.name, this.allProducts, this.productIdsAll, this.productIdsAny,
  this.quantityExact, this.quantityMax, this.quantityMin
});