PricingPlan constructor

PricingPlan({
  1. required String key,
  2. required String name,
  3. required double price,
  4. bool? priceOnRequest,
  5. int projectQuotas = 0,
  6. bool? projectQuotasDisabled,
  7. String modelQuotas = '0',
  8. bool? modelQuotasDisabled,
  9. bool? seoOptimization,
  10. bool? viewReporting,
  11. bool? customQrCodes,
  12. bool? scenesApp,
  13. bool? hidden,
})

Returns a new PricingPlan instance.

Implementation

PricingPlan({
  required this.key,
  required this.name,
  required this.price,
  this.priceOnRequest,
  this.projectQuotas = 0,
  this.projectQuotasDisabled,
  this.modelQuotas = '0',
  this.modelQuotasDisabled,
  this.seoOptimization,
  this.viewReporting,
  this.customQrCodes,
  this.scenesApp,
  this.hidden,
});