all method

void all(
  1. String path,
  2. BloomRouteHandler handler, {
  3. List<BloomMiddleware> middlewares = const [],
})

Registers a route matching all HTTP methods within this group.

Implementation

void all(String path, BloomRouteHandler handler,
    {List<BloomMiddleware> middlewares = const []}) {
  _addRoute('*', path, handler, middlewares);
}