PaymentInfo constructor
const
PaymentInfo({
- required String orderId,
- required String orderName,
- String? customerEmail,
- String? customerName,
- String? appScheme,
- num? taxFreeAmount,
- String? taxExemptionAmount,
- bool? cultureExpense,
- bool? useEscrow,
- List<
EscrowProduct> ? escrowProducts, - String? customerMobilePhone,
- bool? showCustomerMobilePhone = true,
- List<
String> ? mobileCarrier, - List<
Product> ? products, - Shipping? shipping,
- PaymentMethodOptions? paymentMethodOptions,
- bool? useInternationalCardOnly,
Implementation
const PaymentInfo({
required this.orderId,
required this.orderName,
this.customerEmail,
this.customerName,
this.appScheme,
this.taxFreeAmount,
this.taxExemptionAmount,
this.cultureExpense,
this.useEscrow,
this.escrowProducts,
this.customerMobilePhone,
this.showCustomerMobilePhone = true,
this.mobileCarrier,
this.products,
this.shipping,
this.paymentMethodOptions,
this.useInternationalCardOnly,
});