AccountConfigurationRequestMessage constructor

AccountConfigurationRequestMessage({
  1. int commissionPercent = 0,
  2. bool autoWithdraw = false,
  3. bool fines = false,
  4. bool perDayInterest = false,
  5. double latePaymentFine = 0.0,
  6. bool autoAdvance = false,
  7. String autoAdvanceType = '',
  8. String autoAdvanceOption = '',
  9. BankSlipOptions? bankSlipOptions,
  10. CreditCardOptions? creditCardOptions,
})

Implementation

AccountConfigurationRequestMessage({
  this.commissionPercent = 0,
  this.autoWithdraw = false,
  this.fines = false,
  this.perDayInterest = false,
  this.latePaymentFine = 0.0,
  this.autoAdvance = false,
  this.autoAdvanceType = '',
  this.autoAdvanceOption = '',
  this.bankSlipOptions,
  this.creditCardOptions,
});