patch method

Future<void> patch(
  1. HttpHandler handler
)

A PATCH request handler for this route.

Implementation

Future<void> patch(HttpHandler handler) async =>
    await _method(handler, [HttpMethod.patch]);