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