toggleTheme method

void toggleTheme()

Implementation

void toggleTheme() {
  isDarkMode.value = !isDarkMode.value;

  themeService.switchTheme();
}