setAppBarStyleLight method

void setAppBarStyleLight(
  1. FlexAppBarStyle? value, [
  2. bool notify = true
])

Implementation

void setAppBarStyleLight(FlexAppBarStyle? value, [bool notify = true]) {
  // if (value == null) return;
  if (value == _appBarStyleLight) return;
  _appBarStyleLight = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyAppBarStyleLight, value));
}