Steppers constructor

Steppers({
  1. Key? key,
  2. double value = 1,
  3. dynamic onChange(
    1. String val
    )?,
  4. double min = 0,
  5. double max = 9999999,
  6. double step = 1,
  7. double size = Style.stepperButtonIconSize,
  8. bool disabled = false,
  9. bool disabledInput = false,
  10. bool showPlus = true,
  11. bool showMinus = true,
  12. int decimalLength = 0,
  13. double? inputWidth,
})

Implementation

Steppers(
    {Key? key,
    this.value: 1,
    this.onChange,
    this.min: 0,
    this.max: 9999999,
    this.step: 1,
    this.size: Style.stepperButtonIconSize,
    this.disabled: false,
    this.disabledInput: false,
    this.showPlus: true,
    this.showMinus: true,
    this.decimalLength: 0,
    this.inputWidth})
    : super(key: key);