Plan constructor

Plan({
  1. String? id,
  2. String? object,
  3. bool? active,
  4. dynamic aggregateUsage,
  5. int? amount,
  6. String? amountDecimal,
  7. String? billingScheme,
  8. int? created,
  9. String? currency,
  10. String? interval,
  11. int? intervalCount,
  12. bool? livemode,
  13. Map<String, dynamic>? metadata,
  14. String? nickname,
  15. dynamic product,
  16. List<Tier>? tiers,
  17. String? tiersMode,
  18. Transform? transformUsage,
  19. int? trialPeriodDays,
  20. String? usageType,
})

Implementation

Plan({
  this.id,
  this.object,
  this.active,
  this.aggregateUsage,
  this.amount,
  this.amountDecimal,
  this.billingScheme,
  this.created,
  this.currency,
  this.interval,
  this.intervalCount,
  this.livemode,
  this.metadata,
  this.nickname,
  this.product,
  this.tiers,
  this.tiersMode,
  this.transformUsage,
  this.trialPeriodDays,
  this.usageType,
});