MastercardPaymentRequest constructor
const
MastercardPaymentRequest({
- required String orderId,
- required double amount,
- required String currency,
- required MastercardCardDetails cardDetails,
- MastercardBillingAddress? billingAddress,
- MastercardCustomer? customer,
- String? description,
- 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,
});