MastercardPaymentRequest constructor

const MastercardPaymentRequest({
  1. required String orderId,
  2. required double amount,
  3. required String currency,
  4. required MastercardCardDetails cardDetails,
  5. MastercardBillingAddress? billingAddress,
  6. MastercardCustomer? customer,
  7. String? description,
  8. bool require3DS = true,
})

Implementation

const MastercardPaymentRequest({
  required this.orderId,
  required this.amount,
  required this.currency,
  required this.cardDetails,
  this.billingAddress,
  this.customer,
  this.description,
  this.require3DS = true,
});