CustomTooltipSlider constructor

CustomTooltipSlider({
  1. required double radius,
  2. Icon? icon,
  3. Color? iconColor,
  4. TextStyle? labelStyle,
  5. required double value,
  6. double borderThickness = 2,
  7. bool isDragging = true,
  8. String? label,
})

Implementation

CustomTooltipSlider({
  required this.radius,
  this.icon,
  this.iconColor,
  this.labelStyle,
  required this.value,
  this.borderThickness = 2,
  this.isDragging = true,
  this.label,
});