EcmpPaymentInfo constructor

EcmpPaymentInfo({
  1. required int projectId,
  2. required String paymentId,
  3. required int paymentAmount,
  4. required String paymentCurrency,
  5. String? paymentDescription,
  6. String? customerId,
  7. String? regionCode,
  8. String? token,
  9. String? languageCode,
  10. String? receiptData,
  11. bool? hideSavedWallets,
  12. String? forcePaymentMethod,
})

Implementation

EcmpPaymentInfo({
  required this.projectId,
  required this.paymentId,
  required this.paymentAmount,
  required this.paymentCurrency,
  this.paymentDescription,
  this.customerId,
  this.regionCode,
  this.token,
  this.languageCode,
  this.receiptData,
  this.hideSavedWallets,
  this.forcePaymentMethod,
});