setMenuBarShadowColor method

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

Implementation

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