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