ProductDisplayModel constructor

ProductDisplayModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. BackgroundModel? itemDetailBackground,
  5. String? addToBasketText,
  6. ActionModel? buyAction,
  7. ShopModel? shop,
  8. BackgroundModel? background,
  9. StorageConditionsModel? conditions,
})

Implementation

ProductDisplayModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.itemDetailBackground,
  this.addToBasketText,
  this.buyAction,
  this.shop,
  this.background,
  this.conditions,
});