ProductDisplayEntity constructor

ProductDisplayEntity({
  1. required String? appId,
  2. String? description,
  3. BackgroundEntity? itemDetailBackground,
  4. String? addToBasketText,
  5. ActionEntity? buyAction,
  6. String? shopId,
  7. BackgroundEntity? background,
  8. StorageConditionsEntity? conditions,
})

Implementation

ProductDisplayEntity({
  required this.appId,
  this.description,
  this.itemDetailBackground,
  this.addToBasketText,
  this.buyAction,
  this.shopId,
  this.background,
  this.conditions,
});