setThemeType method
- ThemeType themeType
Implementation
void setThemeType(ThemeType themeType) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.setInt('themeType', themeType.index);
_themeType = themeType;
_themeMode = _themeTypeToThemeMode(themeType);
notifyListeners();
}