toggle method

void toggle()

Implementation

void toggle() {
  Debug().info(
      "Show Scrollbars: $_showScrollBar -> ${!_showScrollBar}");
  _showScrollBar = !_showScrollBar;
  notifyListeners();
}