setInteractionEffects method
Implementation
void setInteractionEffects(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _interactionEffects) return;
_interactionEffects = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyInteractionEffects, value));
}