PaymentMethodDTO constructor

PaymentMethodDTO({
  1. PaymentMethod? creditCard,
  2. bool? cash,
  3. bool? cashOnDelivery,
  4. bool? eft,
  5. bool? paypal,
  6. bool? stripe,
  7. bool? bkmExpress,
})

Implementation

PaymentMethodDTO({
  this.creditCard,
  this.cash,
  this.cashOnDelivery,
  this.eft,
  this.paypal,
  this.stripe,
  this.bkmExpress,
});