Future renavigate()

Navigates to either the last URL successfully navigated to, or the last URL requested if the router has yet to successfully navigate.

Source

Future<dynamic> renavigate() {
  if (lastNavigationAttempt == null) {
    return _currentNavigation;
  }
  return navigateByUrl(lastNavigationAttempt);
}