patch method

Future<void> patch(
  1. String match,
  2. HttpHandler handler, {
  3. List<OidcOptions>? security,
})

A PATCH request handler that matches a specific route.

Implementation

Future<void> patch(String match, HttpHandler handler,
    {List<OidcOptions>? security}) async {
  await Route(this, opts.basePath + match,
          security: security ?? opts.security, apiClient: _apiClient)
      .patch(handler);
}