setAdaptiveRemoveNavigationBarTintDark method

void setAdaptiveRemoveNavigationBarTintDark(
  1. AdaptiveTheme? value, [
  2. bool notify = true
])

Implementation

void setAdaptiveRemoveNavigationBarTintDark(AdaptiveTheme? value, [bool notify = true]) {
  if (value == _adaptiveRemoveNavigationBarTintDark) return;
  _adaptiveRemoveNavigationBarTintDark = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyAdaptiveRemoveNavigationBarTintDark, value));
}