setInputSelectionLightOpacity method
Implementation
void setInputSelectionLightOpacity(double? value, [bool notify = true]) {
if (value == _inputSelectionLightOpacity) return;
_inputSelectionLightOpacity = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyInputSelectionLightOpacity, value));
}