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