CreditNoteTaxAmount constructor

const CreditNoteTaxAmount({
  1. required int amount,
  2. required bool inclusive,
  3. required TaxRateOrId taxRate,
  4. CreditNoteTaxAmountTaxabilityReason? taxabilityReason,
  5. int? taxableAmount,
})

CreditNoteTaxAmount

Implementation

const CreditNoteTaxAmount({
  required this.amount,
  required this.inclusive,
  required this.taxRate,
  this.taxabilityReason,
  this.taxableAmount,
});