InvoiceLineItem constructor

InvoiceLineItem({
  1. String? id,
  2. String? object,
  3. int? amount,
  4. String? description,
  5. bool? livemode,
  6. List<Rate>? taxRates,
  7. String? type,
  8. int? quantity,
  9. List<TaxAmount>? taxAmounts,
  10. String? currency,
  11. bool? discountable,
  12. String? invoiceItem,
  13. Map<String, dynamic>? metadata,
  14. Period? period,
  15. Plan? plan,
  16. Price? price,
  17. bool? proration,
  18. String? subscription,
  19. String? subscriptionItem,
})

Implementation

InvoiceLineItem(
    {this.id,
    this.object,
    this.amount,
    this.description,
    this.livemode,
    this.taxRates,
    this.type,
    this.quantity,
    this.taxAmounts,
    this.currency,
    this.discountable,
    this.invoiceItem,
    this.metadata,
    this.period,
    this.plan,
    this.price,
    this.proration,
    this.subscription,
    this.subscriptionItem});