setToggleButtonsSchemeColor method

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

Implementation

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