CreditNoteLinesItem constructor

const CreditNoteLinesItem({
  1. int? amount,
  2. String? description,
  3. String? invoiceLineItem,
  4. int? quantity,
  5. List<CreditNoteTaxAmountsItem>? taxAmounts,
  6. List<String>? taxRates,
  7. required CreditNoteLineItemType type,
  8. int? unitAmount,
  9. String? unitAmountDecimal,
})

credit_note_line_item_params

Implementation

const CreditNoteLinesItem({
  this.amount,
  this.description,
  this.invoiceLineItem,
  this.quantity,
  this.taxAmounts,
  this.taxRates,
  required this.type,
  this.unitAmount,
  this.unitAmountDecimal,
});