removeRouteHistory method

void removeRouteHistory(
  1. Route route
)

Remove the route from the history.

Implementation

void removeRouteHistory(Route<dynamic> route) {
  _routeHistory.remove(route);
}