Plan constructor

const Plan(
  1. String id,
  2. String? productId,
  3. PlanStatus status,
  4. String name,
  5. String? description,
  6. List<BillingCycle>? billingCycles,
  7. PaymentPreferences? paymentPreferences,
  8. Taxes? taxes,
  9. bool? quantitySupported,
  10. String? createTime,
  11. String? updateTime,
  12. 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,
);