PlanRequest constructor

const PlanRequest({
  1. required String productId,
  2. required String name,
  3. PlanStatus? status,
  4. String? description,
  5. required List<BillingCycle> billingCycles,
  6. required PaymentPreferences paymentPreferences,
  7. Taxes? taxes,
  8. 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,
});