CreditNoteTaxAmountsItem constructor

const CreditNoteTaxAmountsItem({
  1. required int amount,
  2. required String taxRate,
  3. required int taxableAmount,
})

tax_amount_with_tax_rate_param

Implementation

const CreditNoteTaxAmountsItem({
  required this.amount,
  required this.taxRate,
  required this.taxableAmount,
});