removeRouteHistory method

dynamic removeRouteHistory(
  1. Route route
)

Remove the route from the history.

Implementation

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