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