setTooltipSchemeColor method

void setTooltipSchemeColor(
  1. SchemeColor? value, [
  2. bool notify = true
])

Implementation

void setTooltipSchemeColor(SchemeColor? value, [bool notify = true]) {
  if (value == _tooltipSchemeColor) return;
  _tooltipSchemeColor = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyTooltipSchemeColor, value));
}