CatalogBody constructor

CatalogBody({
  1. String? name,
  2. String? storeId,
  3. List<String>? userGroups,
  4. List<ProductCatalogBody>? products,
  5. List<String>? assignedStores,
})

Implementation

CatalogBody({
  this.name,
  this.storeId,
  this.userGroups,
  this.products,
  this.assignedStores,
});