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