setBottomNavBarMuteUnselected method

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

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));
}