CartModel constructor
CartModel({
- required String documentID,
- required String appId,
- String? title,
- String? description,
- String? checkoutText,
- ShopModel? shop,
- BackgroundModel? itemImageBackground,
- BackgroundModel? itemDetailBackground,
- ActionModel? checkoutAction,
- ActionModel? backToShopAction,
- ActionModel? openProductAction,
- 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,
});