setBottomNavBarBackgroundSchemeColor method
void
setBottomNavBarBackgroundSchemeColor(
Implementation
void setBottomNavBarBackgroundSchemeColor(SchemeColor? value, [bool notify = true]) {
if (value == _bottomNavBarBackgroundSchemeColor) return;
_bottomNavBarBackgroundSchemeColor = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyBottomNavBarBackgroundSchemeColor, value));
}