setTooltipsMatchBackground method
Implementation
void setTooltipsMatchBackground(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _tooltipsMatchBackground) return;
_tooltipsMatchBackground = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyTooltipsMatchBackground, value));
}