setInputSelectionDarkOpacity method

void setInputSelectionDarkOpacity(
  1. double? value, [
  2. bool notify = true
])

Implementation

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