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