removeRoute<T> function
Remove a route from the router context.
Implementation
void removeRoute<T>(RouterContext<T> ctx, String method, String path) {
return _remove(ctx.root, method, toPathSegments(path), 0);
}
Remove a route from the router context.
void removeRoute<T>(RouterContext<T> ctx, String method, String path) {
return _remove(ctx.root, method, toPathSegments(path), 0);
}