CountStepper constructor

const CountStepper({
  1. Key? key,
  2. StepperController? controller,
  3. int defaultValue = 0,
  4. int max = 999,
  5. int min = -999,
  6. double space = 10,
  7. OnTapCallback? onPressed,
  8. Widget? iconIncrement,
  9. Widget? iconDecrement,
  10. Color? iconIncrementColor,
  11. Color? iconDecrementColor,
  12. Color? iconColor,
  13. double splashRadius = 15.0,
  14. TextStyle? textStyle,
})

Implementation

const CountStepper({
  Key? key,
  this.controller,
  this.defaultValue = 0,
  this.max = 999,
  this.min = -999,
  this.space = 10,
  this.onPressed,
  this.iconIncrement,
  this.iconDecrement,
  this.iconIncrementColor,
  this.iconDecrementColor,
  this.iconColor,
  this.splashRadius = 15.0,
  this.textStyle,
}) : super(key: key);