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