updateWith method
void
updateWith({})
Implementation
void updateWith({
double? balloonWidth,
double? thumbSize,
Color? thumbColor,
Color? inactiveTrackColor,
Color? activeTrackColor,
TextStyle? balloonTextStyle,
}) {
_inactiveTrackColor = inactiveTrackColor ?? _inactiveTrackColor;
_activeTrackColor = activeTrackColor ?? _activeTrackColor;
_thumbColor = thumbColor ?? _thumbColor;
_thumbSize = thumbSize ?? _thumbSize;
_balloonWidth = balloonWidth ?? _balloonWidth;
markNeedsPaint();
}