VerticalPickerWidget constructor

const VerticalPickerWidget({
  1. Key? key,
  2. required FixedExtentScrollController controller,
  3. required void onScroll(
    1. int val
    ),
  4. int minIntegralValue = 0,
  5. int maxIntegralValue = 100,
  6. void onCompleteAnimation(
    1. AnimationStatus
    )?,
  7. TextStyle? textStyle,
})

Implementation

const VerticalPickerWidget({
  Key? key,
  required this.controller,
  required this.onScroll,
  this.minIntegralValue = 0,
  this.maxIntegralValue = 100,
  this.onCompleteAnimation, this.textStyle,
}) : super(key: key);