setAdaptiveRemoveNavigationBarTintLight method

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

Implementation

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