PLYPlan constructor

PLYPlan(
  1. String? vendorId,
  2. String? productId,
  3. String? name,
  4. PLYPlanType type,
  5. double? amount,
  6. String? localizedAmount,
  7. String? currencyCode,
  8. String? currencySymbol,
  9. String? price,
  10. String? period,
  11. bool? hasIntroductoryPrice,
  12. String? introPrice,
  13. double? introAmount,
  14. String? introDuration,
  15. String? introPeriod,
  16. bool? hasFreeTrial,
)

Implementation

PLYPlan(
    this.vendorId,
    this.productId,
    this.name,
    this.type,
    this.amount,
    this.localizedAmount,
    this.currencyCode,
    this.currencySymbol,
    this.price,
    this.period,
    this.hasIntroductoryPrice,
    this.introPrice,
    this.introAmount,
    this.introDuration,
    this.introPeriod,
    this.hasFreeTrial);