toggle static method
void
toggle()
Flips theme between DevConsoleTheme.dark and DevConsoleTheme.light.
Implementation
static void toggle() {
theme.value =
theme.value == DevConsoleTheme.dark
? DevConsoleTheme.light
: DevConsoleTheme.dark;
}