setBottomAppBarElevationDark method

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

Implementation

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