delete method
A DELETE request handler
for this route.
Implementation
Future<void> delete(HttpHandler handler) async {
final composedHandler = composeMiddleware(
[...api.opts.middlewares, ..._middlewares, handler],
HttpContext.fromCtx);
var worker = ApiWorker(this, composedHandler, [HttpMethod.delete],
security: security, client: _apiClient);
await worker.start();
}