setSliderShowValueIndicator method

void setSliderShowValueIndicator(
  1. ShowValueIndicator? value, [
  2. bool notify = true
])

Implementation

void setSliderShowValueIndicator(ShowValueIndicator? value, [bool notify = true]) {
  if (value == _sliderShowValueIndicator) return;
  _sliderShowValueIndicator = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keySliderShowValueIndicator, value));
}