CartModel constructor

CartModel({
  1. required String documentID,
  2. required String appId,
  3. String? title,
  4. String? description,
  5. String? checkoutText,
  6. ShopModel? shop,
  7. BackgroundModel? itemImageBackground,
  8. BackgroundModel? itemDetailBackground,
  9. ActionModel? checkoutAction,
  10. ActionModel? backToShopAction,
  11. ActionModel? openProductAction,
  12. StorageConditionsModel? conditions,
})

Implementation

CartModel({
  required this.documentID,
  required this.appId,
  this.title,
  this.description,
  this.checkoutText,
  this.shop,
  this.itemImageBackground,
  this.itemDetailBackground,
  this.checkoutAction,
  this.backToShopAction,
  this.openProductAction,
  this.conditions,
});