toggle method

void toggle()

Implementation

void toggle() {
  Debug().info("Use AltLayout: $_useAlt -> ${!_useAlt}");
  _useAlt = !_useAlt;
  notifyListeners();
}