PaymentMethod constructor

PaymentMethod({
  1. String? id,
  2. String? createdAt,
  3. String? creditCard,
  4. bool? cash,
  5. bool? cashOnDelivery,
  6. bool? eft,
  7. bool? paypal,
  8. bool? stripe,
  9. bool? bkmExpress,
})

Implementation

PaymentMethod(
    {this.id,
    this.createdAt,
    this.creditCard,
    this.cash,
    this.cashOnDelivery,
    this.eft,
    this.paypal,
    this.stripe,
    this.bkmExpress});