setNavRailMuteUnselected method
void
setNavRailMuteUnselected(
Implementation
void setNavRailMuteUnselected(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _navRailMuteUnselected) return;
_navRailMuteUnselected = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyNavRailMuteUnselected, value));
}