setAppBarScrolledUnderElevationLight method

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

Implementation

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