Plan constructor

Plan(
  1. String? name,
  2. int? amount,
  3. String? description,
  4. String? currencyCode,
  5. String? billingFrequency,
  6. int? billingPeriod, {
  7. String? gid,
  8. Currency? currency,
  9. String? planStartDate,
  10. List<String>? taxRateList,
  11. String? couponId,
  12. int? quantity,
  13. int? totalCount,
  14. String? status,
})

Implementation

Plan(this.name, this.amount, this.description, this.currencyCode,
    this.billingFrequency, this.billingPeriod,
    {this.gid,
    this.currency,
    this.planStartDate,
    this.taxRateList,
    this.couponId,
    this.quantity,
    this.totalCount,
    this.status});