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