SubscriptionPlan constructor

const SubscriptionPlan({
  1. String? id,
  2. String? name,
  3. String? description,
  4. String? currency,
  5. double? amount,
  6. double? oneTimeFee,
  7. int? recurrency,
  8. String? recurrencyUnit,
  9. int? recurringCycles,
  10. int? trialPeriod,
  11. double? discountAmount,
  12. double? discountPercentage,
  13. int? discountCycles,
  14. bool? isLive,
  15. bool? alreadySubscribed,
  16. String? created,
})

Implementation

const SubscriptionPlan({
  this.id,
  this.name,
  this.description,
  this.currency,
  this.amount,
  this.oneTimeFee,
  this.recurrency,
  this.recurrencyUnit,
  this.recurringCycles,
  this.trialPeriod,
  this.discountAmount,
  this.discountPercentage,
  this.discountCycles,
  this.isLive,
  this.alreadySubscribed,
  this.created,
});