toggle static method

void toggle()

Toggle between light and dark modes

Implementation

static void toggle() {
  instance._mode =
      instance._mode == ThemeMode.dark ? ThemeMode.light : ThemeMode.dark;
  instance.notifyListeners();
}