toggle method

void toggle()

Implementation

void toggle() {
  Debug().info(
      "Show Hints Guide: $_showingHints -> ${!_showingHints}");
  _showingHints = !_showingHints;
  notifyListeners();
}