FLCountStepper constructor

FLCountStepper({
  1. Key? key,
  2. required FLCountStepperController controller,
  3. ValueChanged<num>? onChanged,
  4. bool disabled = false,
  5. bool disableInput = true,
  6. double inputWidth = _kDefaultInputWidth,
  7. Color? actionColor,
  8. double? iconFontSize,
  9. double? textAndInputHeight,
  10. ValueChanged<TextEditingController>? inputOnTap,
  11. ValueChanged<String>? onChangeWithInput,
})

Implementation

FLCountStepper(
    {Key? key,
    required this.controller,
    this.onChanged,
    this.disabled = false,
    this.disableInput = true,
    this.inputWidth = _kDefaultInputWidth,
    this.actionColor,
    this.iconFontSize, this.textAndInputHeight, this.inputOnTap,
  this.onChangeWithInput
    })
    : super(key: key);