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