CustomerProcessPayment constructor

CustomerProcessPayment({
  1. List<CustomerKhasCart>? customerKhasCart,
  2. String? paymentMethodId,
  3. bool? success,
  4. String? message,
  5. SetUpPayment? setUpPayment,
})

Implementation

CustomerProcessPayment({
  this.customerKhasCart,
  this.paymentMethodId,
  this.success,
  this.message,
  this.setUpPayment,
});