setTooltipOpacity method

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

Implementation

void setTooltipOpacity(double? value, [bool notify = true]) {
  if (value == null) return;
  if (value == _tooltipOpacity) return;
  _tooltipOpacity = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyTooltipOpacity, value));
}