setTooltipShowDuration method

void setTooltipShowDuration(
  1. int? value, [
  2. bool notify = true
])

Implementation

void setTooltipShowDuration(int? value, [bool notify = true]) {
  if (value == _tooltipShowDuration) return;
  _tooltipShowDuration = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyTooltipShowDuration, value));
}