put method

Future<void> put(
  1. HttpHandler handler
)

A PUT request handler for this route.

Implementation

Future<void> put(HttpHandler handler) async {
  final composedHandler = composeMiddleware(
      [...api.opts.middlewares, ..._middlewares, handler],
      HttpContext.fromCtx);

  var worker = ApiWorker(this, composedHandler, [HttpMethod.put],
      security: security, client: _apiClient);

  await worker.start();
}