setAppBarStyleLight method
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));
}