PLYPlan constructor Null safety

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

Implementation

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