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