AccountBasedExpense constructor

AccountBasedExpense({
  1. double? taxInclusiveAmt,
  2. MarkupInfo? markupInfo,
  3. ReferenceType? customerRef,
  4. ReferenceType? classRef,
  5. BillableStatusEnum? billableStatus,
  6. ReferenceType? taxCodeRef,
  7. required ReferenceType accountRef,
  8. double? taxAmount,
})

Implementation

AccountBasedExpense({
  this.taxInclusiveAmt, this.markupInfo, this.customerRef, this.classRef,
  this.billableStatus, this.taxCodeRef, required this.accountRef, this.taxAmount
});