RefundedPayment constructor

const RefundedPayment({
  1. required String currency,
  2. required int totalAmount,
  3. required String invoicePayload,
  4. required String telegramPaymentChargeId,
  5. String? providerPaymentChargeId,
})

Constructs a RefundedPayment object.

Implementation

const RefundedPayment({
  required this.currency,
  required this.totalAmount,
  required this.invoicePayload,
  required this.telegramPaymentChargeId,
  this.providerPaymentChargeId,
});