themeMode property
ThemeMode
get
themeMode
Currently active theme mode.
Implementation
ThemeMode get themeMode => _themeMode;
set
themeMode
(ThemeMode mode)
Update the theme mode and persist it. Guards on equal value.
Implementation
set themeMode(ThemeMode mode) {
if (_themeMode == mode) return;
_themeMode = mode;
CLTheme.saveThemeMode(mode);
notifyListeners();
}