setThemeMode method

void setThemeMode(
  1. ThemeType type
)

Implementation

void setThemeMode(ThemeType type) {
  _clearCache();
  _currentTheme = ThemeConfig(type: type, primaryColor: _currentTheme.primaryColor);
  saveTheme();
  notifyListeners();
}