PaymentOptions constructor

PaymentOptions({
  1. bool? cash,
  2. String? cashException,
  3. bool? cheque,
  4. String? chequeException,
  5. bool? creditCard,
  6. String? creditCardException,
  7. bool? debitCard,
  8. String? debitCardException,
  9. bool? mobileNfc,
  10. String? mobileNfcException,
})

Implementation

PaymentOptions({
  this.cash,
  this.cashException,
  this.cheque,
  this.chequeException,
  this.creditCard,
  this.creditCardException,
  this.debitCard,
  this.debitCardException,
  this.mobileNfc,
  this.mobileNfcException,
});