toggleTheme method

Future<void> toggleTheme()

Implementation

Future<void> toggleTheme() async {
  _themeMode = _themeMode == ThemeMode.light ? ThemeMode.dark : ThemeMode.light;
  await CLTheme.saveThemeMode(_themeMode);
  notifyListeners();
}