BusinessProduct constructor

BusinessProduct({
  1. required bool hidePrice,
  2. required bool showReview,
  3. required List aspectRatio,
  4. required bool showCategory,
  5. required bool showVariants,
  6. required bool showSubCategory,
  7. required bool availableForSubscription,
})

Implementation

BusinessProduct({
  required this.hidePrice,
  required this.showReview,
  required this.aspectRatio,
  required this.showCategory,
  required this.showVariants,
  required this.showSubCategory,
  required this.availableForSubscription,
});