setNavRailIndicatorOpacity method

void setNavRailIndicatorOpacity(
  1. double? value, [
  2. bool notify = true
])

Implementation

void setNavRailIndicatorOpacity(double? value, [bool notify = true]) {
  if (value == _navRailIndicatorOpacity) return;
  _navRailIndicatorOpacity = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyNavRailIndicatorOpacity, value));
}