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