setMenuBarElevation method
Implementation
void setMenuBarElevation(double? value, [bool notify = true]) {
if (value == _menuBarElevation) return;
_menuBarElevation = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyMenuBarElevation, value));
}