PaymentAmountNullable constructor

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

Implementation

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