InvoiceItem constructor

InvoiceItem({
  1. int? amount,
  2. String? currency,
  3. String? customer,
  4. int? date,
  5. String? description,
  6. String? id,
  7. String? invoice,
  8. bool? livemode,
  9. Map<String, dynamic>? metadata,
  10. String? object,
  11. Price? price,
  12. bool? proration,
  13. int? quantity,
  14. String? subscription,
  15. List<String>? taxRates,
  16. int? unitAmount,
  17. String? unitAmountDecimal,
})

Implementation

InvoiceItem({
  this.amount,
  this.currency,
  this.customer,
  this.date,
  this.description,
  this.id,
  this.invoice,
  this.livemode,
  this.metadata,
  this.object,
  this.price,
  this.proration,
  this.quantity,
  this.subscription,
  this.taxRates,
  this.unitAmount,
  this.unitAmountDecimal,
});