toggleTheme method

void toggleTheme()

Toggle between light and dark mode and persist the new value.

Implementation

void toggleTheme() {
  _themeMode = _themeMode == ThemeMode.dark ? ThemeMode.light : ThemeMode.dark;
  CLTheme.saveThemeMode(_themeMode);
  notifyListeners();
}