all method

Future<void> all(
  1. HttpHandler handler
)

A request handler for this route that matches all HTTP methods.

Implementation

Future<void> all(HttpHandler handler) async =>
    await _method(handler, HttpMethod.values);