CartEntity constructor

CartEntity({
  1. required String? appId,
  2. String? title,
  3. String? description,
  4. String? checkoutText,
  5. String? shopId,
  6. BackgroundEntity? itemImageBackground,
  7. BackgroundEntity? itemDetailBackground,
  8. ActionEntity? checkoutAction,
  9. ActionEntity? backToShopAction,
  10. ActionEntity? openProductAction,
  11. StorageConditionsEntity? conditions,
})

Implementation

CartEntity({
  required this.appId,
  this.title,
  this.description,
  this.checkoutText,
  this.shopId,
  this.itemImageBackground,
  this.itemDetailBackground,
  this.checkoutAction,
  this.backToShopAction,
  this.openProductAction,
  this.conditions,
});