setMenuBarShadowColor method
Implementation
void setMenuBarShadowColor(Color? value, [bool notify = true]) {
if (value == _menuBarShadowColor) return;
_menuBarShadowColor = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyMenuBarShadowColor, value));
}