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