PaymentAmount constructor

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

Implementation

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