SubscriptionPlan constructor
const
SubscriptionPlan({
- String? id,
- String? name,
- String? description,
- String? currency,
- double? amount,
- double? oneTimeFee,
- int? recurrency,
- String? recurrencyUnit,
- int? recurringCycles,
- int? trialPeriod,
- double? discountAmount,
- double? discountPercentage,
- int? discountCycles,
- bool? isLive,
- bool? alreadySubscribed,
- 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,
});