removeRouteBelow method

void removeRouteBelow(
  1. Route anchorRoute
)
inherited

Immediately remove a route from the navigator, and Route.dispose it. The route to be replaced is the one below the given anchorRoute.

Implementation

void removeRouteBelow(Route<dynamic> anchorRoute) =>
    _nav!.removeRouteBelow(anchorRoute);