toggleTheme method

void toggleTheme()

Implementation

void toggleTheme() {
  _isDark = !_isDark;
  notifyListeners();
}