PlanRequest constructor
const
PlanRequest({
- required String productId,
- required String name,
- PlanStatus? status,
- String? description,
- required List<
BillingCycle> billingCycles, - required PaymentPreferences paymentPreferences,
- Taxes? taxes,
- bool? quantitySupported,
Implementation
const PlanRequest({
required this.productId,
required this.name,
this.status,
this.description,
required this.billingCycles,
required this.paymentPreferences,
this.taxes,
this.quantitySupported,
});