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