setUseTextTheme method

void setUseTextTheme(
  1. bool? value, [
  2. bool notify = true
])

Implementation

void setUseTextTheme(bool? value, [bool notify = true]) {
  if (value == _useTextTheme) return;
  _useTextTheme = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyUseTextTheme, value));
}