TaxLineDetail constructor

TaxLineDetail({
  1. double? netAmountTaxable,
  2. double? overrideDeltaAmount,
  3. bool? percentBased,
  4. double? taxInclusiveAmount,
  5. double? taxPercent,
  6. required ReferenceType taxRateRef,
})

Implementation

TaxLineDetail({
  this.netAmountTaxable, this.overrideDeltaAmount, this.percentBased,
  this.taxInclusiveAmount, this.taxPercent, required this.taxRateRef
});