toggleTheme method

void toggleTheme()

Implementation

void toggleTheme() {
  emit(state == ThemeMode.light ? ThemeMode.dark : ThemeMode.light);
}