BalloonSlider constructor

const BalloonSlider({
  1. Key? key,
  2. required ValueNotifier<double> value,
  3. Color color = Colors.black,
  4. double balloonWidth = 50,
  5. double thumbSize = 12,
  6. Color? thumbColor,
  7. Color? activeTrackColor,
  8. Color? inactiveTrackColor,
  9. TextStyle? balloonTextStyle,
})

Implementation

const BalloonSlider({
  Key? key,
  required this.value,
  this.color = Colors.black,
  this.balloonWidth = 50,
  this.thumbSize = 12,
  this.thumbColor,
  this.activeTrackColor,
  this.inactiveTrackColor,
  this.balloonTextStyle,
}) : super(key: key);