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