QuoteTransferData constructor

const QuoteTransferData({
  1. int? amount,
  2. double? amountPercent,
  3. required AccountOrId destination,
})

The account (if any) the payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the invoices.

Implementation

const QuoteTransferData({
  this.amount,
  this.amountPercent,
  required this.destination,
});