setBottomAppBarElevationLight method

void setBottomAppBarElevationLight(
  1. double? value, [
  2. bool notify = true
])

Implementation

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