setSwitchSchemeColor method
Implementation
void setSwitchSchemeColor(SchemeColor? value, [bool notify = true]) {
if (value == _switchSchemeColor) return;
_switchSchemeColor = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keySwitchSchemeColor, value));
}