ShopFrontModel constructor

ShopFrontModel({
  1. required String documentID,
  2. required String appId,
  3. String? title,
  4. String? description,
  5. ShopModel? shop,
  6. double? size,
  7. double? cardElevation,
  8. double? cardAxisSpacing,
  9. BackgroundModel? itemCardBackground,
  10. RgbModel? addToCartColor,
  11. ScrollDirection? scrollDirection,
  12. ActionModel? buyAction,
  13. ActionModel? openProductAction,
  14. EdgeInsetsGeometryModel? padding,
  15. StorageConditionsModel? conditions,
})

Implementation

ShopFrontModel({
  required this.documentID,
  required this.appId,
  this.title,
  this.description,
  this.shop,
  this.size,
  this.cardElevation,
  this.cardAxisSpacing,
  this.itemCardBackground,
  this.addToCartColor,
  this.scrollDirection,
  this.buyAction,
  this.openProductAction,
  this.padding,
  this.conditions,
});