PaymentInfo constructor

const PaymentInfo({
  1. required String orderId,
  2. required String orderName,
  3. String? customerEmail,
  4. String? customerName,
  5. String? appScheme,
  6. num? taxFreeAmount,
  7. String? taxExemptionAmount,
  8. bool? cultureExpense,
  9. bool? useEscrow,
  10. List<EscrowProduct>? escrowProducts,
  11. String? customerMobilePhone,
  12. bool? showCustomerMobilePhone = true,
  13. List<String>? mobileCarrier,
  14. List<Product>? products,
  15. Shipping? shipping,
  16. PaymentMethodOptions? paymentMethodOptions,
  17. 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,
});