DirectPayment constructor

DirectPayment({
  1. required String paymentType,
  2. bool? saveToken,
  3. CardInfo? card,
  4. String? token,
  5. bool? bypass3Ds,
})

Implementation

DirectPayment({
  required this.paymentType,
  this.saveToken,
  this.card,
  this.token,
  this.bypass3Ds,
});