QuoteCreateOptionsTransferData constructor

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

transfer_data_specs

The data with which to automatically create a Transfer for each of the invoices.

Implementation

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