setAdaptiveRemoveElevationTintDark method

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

Implementation

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