InvoiceAmount constructor

InvoiceAmount({
  1. CurrencyType? currency,
  2. double? amount,
})

Implementation

InvoiceAmount({
  this.currency,
  this.amount,
});