LineItem constructor

LineItem({
  1. String? id,
  2. String? object,
  3. int? amountSubtotal,
  4. int? amountTotal,
  5. String? currency,
  6. String? description,
  7. int? quantity,
  8. CheckoutPrice? price,
  9. List<Tax>? taxes,
})

Implementation

LineItem(
    {this.id,
    this.object,
    this.amountSubtotal,
    this.amountTotal,
    this.currency,
    this.description,
    this.quantity,
    this.price,
    this.taxes});