PaymentAmount constructor

PaymentAmount({
  1. PaymentAmountCurrency? currency,
  2. double? value,
})

Implementation

PaymentAmount({
  this.currency,
  this.value,
});