SubscriptionScheduleAddInvoiceItem constructor

const SubscriptionScheduleAddInvoiceItem({
  1. required SubscriptionScheduleAddInvoiceItemPriceOrId price,
  2. int? quantity,
  3. List<TaxRate>? taxRates,
})

SubscriptionScheduleAddInvoiceItem

An Add Invoice Item describes the prices and quantities that will be added as pending invoice items when entering a phase.

Implementation

const SubscriptionScheduleAddInvoiceItem({
  required this.price,
  this.quantity,
  this.taxRates,
});