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