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 {
  var worker = ApiWorker(this, handler, HttpMethod.values,
      security: security, client: _apiClient);

  await worker.start();
}