setAppBarOpacityLight method

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

Implementation

void setAppBarOpacityLight(double? value, [bool notify = true]) {
  if (value == null) return;
  if (value == _appBarOpacityLight) return;
  _appBarOpacityLight = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyAppBarOpacityLight, value));
}