Price constructor

Price({
  1. String? id,
  2. String? object,
  3. bool? active,
  4. String? billingScheme,
  5. int? created,
  6. String? currency,
  7. bool? livemode,
  8. String? lookupKey,
  9. Map<String, dynamic>? metadata,
  10. String? nickname,
  11. dynamic product,
  12. dynamic recurring,
  13. List<Tier>? tiers,
  14. String? tiersMode,
  15. Transform? transformQuantity,
  16. String? type,
  17. int? unitAmount,
  18. String? unitAmountDecimal,
})

Implementation

Price({
  this.id,
  this.object,
  this.active,
  this.billingScheme,
  this.created,
  this.currency,
  this.livemode,
  this.lookupKey,
  this.metadata,
  this.nickname,
  this.product,
  this.recurring,
  this.tiers,
  this.tiersMode,
  this.transformQuantity,
  this.type,
  this.unitAmount,
  this.unitAmountDecimal,
});