toggleTheme method

void toggleTheme()

Toggle between light and dark theme.

Implementation

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