PriceParameters constructor

PriceParameters({
  1. int? customUnitAmount,
  2. ProductData? productData,
  3. List<Map<String, dynamic>>? tiers,
  4. String? tiersMode,
  5. String? billingScheme,
  6. Map<String, dynamic>? currencyOptions,
  7. String? lookupKey,
  8. String? taxBehavior,
  9. String? transferLookupKey,
  10. Map<String, dynamic>? transformQuantity,
  11. double? unitAmountDecimal,
})

Implementation

PriceParameters({
  this.customUnitAmount,
  this.productData,
  this.tiers,
  this.tiersMode,
  this.billingScheme,
  this.currencyOptions,
  this.lookupKey,
  this.taxBehavior,
  this.transferLookupKey,
  this.transformQuantity,
  this.unitAmountDecimal,
});