Product constructor

const Product({
  1. required String name,
  2. required String description,
  3. required String productId,
  4. required String locale,
  5. required String currencySymbol,
  6. required List<Plan> plans,
  7. double formViewWidth = 588.0,
  8. double formViewHeight = 616.0,
})

Implementation

const Product({
  required this.name,
  required this.description,
  required this.productId,
  required this.locale,
  required this.currencySymbol,
  required this.plans,
  this.formViewWidth = 588.0,
  this.formViewHeight = 616.0,
});