go method

  1. @override
void go(
  1. int delta, {
  2. bool triggerListeners = true,
})
override

Moves within the history stack by delta entries.

When triggerListeners is false, implementations should suppress listen notifications for this navigation.

Implementation

@override
void go(int delta, {bool triggerListeners = true}) {
  if (!triggerListeners) {
    _ignoreNextPop = true;
  }
  window.history.go(delta);
}