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