CreditCardOptions constructor

CreditCardOptions({
  1. bool active = false,
  2. String softDescriptor = '',
  3. bool installments = false,
  4. bool installmentsPassInterest = false,
  5. int maxInstallments = 0,
  6. int maxInstallmentsWithoutInterest = 0,
  7. bool twoStepTransaction = false,
})

Implementation

CreditCardOptions({
  this.active = false,
  this.softDescriptor = '',
  this.installments = false,
  this.installmentsPassInterest = false,
  this.maxInstallments = 0,
  this.maxInstallmentsWithoutInterest = 0,
  this.twoStepTransaction = false,
});