all method
Adds a route that responds to any request matching the given path.
Implementation
Route<T> all(String path, T handler, {Iterable<T> middleware = const []}) {
return addRoute('*', path, handler, middleware: middleware);
}
Adds a route that responds to any request matching the given path.
Route<T> all(String path, T handler, {Iterable<T> middleware = const []}) {
return addRoute('*', path, handler, middleware: middleware);
}