ProductDefaultPriceData constructor

const ProductDefaultPriceData({
  1. required String currency,
  2. Map<String, PriceCurrencyOptionsValue>? currencyOptions,
  3. SessionRecurring? recurring,
  4. ShippingRateCurrencyOptionTaxBehavior? taxBehavior,
  5. int? unitAmount,
  6. String? unitAmountDecimal,
})

price_data_without_product

Data used to generate a new [Price](https://stripe.com/docs/api/prices) object. This Price will be set as the default price for this product.

Implementation

const ProductDefaultPriceData({
  required this.currency,
  this.currencyOptions,
  this.recurring,
  this.taxBehavior,
  this.unitAmount,
  this.unitAmountDecimal,
});