ProductDefaultPriceData constructor
const
ProductDefaultPriceData({
- required String currency,
- Map<
String, PriceCurrencyOptionsValue> ? currencyOptions, - SessionRecurring? recurring,
- ShippingRateCurrencyOptionTaxBehavior? taxBehavior,
- int? unitAmount,
- 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,
});