toggle static method

void toggle()

Implementation

static void toggle() {
  theme.value =
      theme.value == DevConsoleTheme.dark
          ? DevConsoleTheme.light
          : DevConsoleTheme.dark;
}