QuickbooksTaxLineDetails constructor

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

Implementation

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