setAppBarStyleDark method
Implementation
void setAppBarStyleDark(FlexAppBarStyle? value, [bool notify = true]) {
// if (value == null) return;
if (value == _appBarStyleDark) return;
_appBarStyleDark = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyAppBarStyleDark, value));
}