patch method

Future<void> patch(
  1. HttpHandler handler
)

A PATCH request handler for this route.

Implementation

Future<void> patch(HttpHandler handler) async {
  var worker = ApiWorker(this, handler, [HttpMethod.patch],
      security: security, client: _apiClient);

  await worker.start();
}