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