PaymentValue constructor

PaymentValue({
  1. required double amount,
  2. String? currency,
  3. int? installments,
  4. double? discountAmount,
})

Implementation

PaymentValue({
  required this.amount,
  this.currency,
  this.installments,
  this.discountAmount,
});