Plan constructor
const
Plan(
- String id,
- String? productId,
- PlanStatus status,
- String name,
- String? description,
- List<
BillingCycle> ? billingCycles, - PaymentPreferences? paymentPreferences,
- Taxes? taxes,
- bool? quantitySupported,
- String? createTime,
- String? updateTime,
- List<
LinkDescription> ? links,
Implementation
const Plan(
this.id,
this.productId,
this.status,
this.name,
this.description,
this.billingCycles,
this.paymentPreferences,
this.taxes,
this.quantitySupported,
this.createTime,
this.updateTime,
this.links,
);