CatalogItem constructor

CatalogItem({
  1. String? name,
  2. String? description,
  3. List<String>? imageIds,
  4. List<String>? taxIds,
  5. String? abbreviation,
  6. bool? availableElectronically,
  7. bool? availableForPickup,
  8. bool? availableOnline,
  9. String? categoryId,
  10. List<CatalogItemOptionForItem>? itemOptions,
  11. String? labelColor,
  12. List<CatalogItemModifierListInfo>? modifierListInfo,
  13. CatalogItemProductType? productType,
  14. bool? skipModifierScreen,
  15. String? sortName,
  16. List<CatalogObject>? variations,
})

Implementation

CatalogItem({
  this.name, this.description, this.imageIds, this.taxIds,
  this.abbreviation, this.availableElectronically, this.availableForPickup,
  this.availableOnline, this.categoryId, this.itemOptions, this.labelColor,
  this.modifierListInfo, this.productType, this.skipModifierScreen,
  this.sortName, this.variations
});