go method
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);
}