changeTheme method

void changeTheme()

Implementation

void changeTheme() {
  if (_themeMode == ThemeMode.dark) {
    _themeMode = ThemeMode.light;
  } else {
    _themeMode = ThemeMode.dark;
  }
  SharedManager.remove(kThemeModeKey);
  notifyListeners();
}