patch method

Future<HttpClientRequest> patch(
  1. String host,
  2. int port,
  3. String path
)

Opens a request on the basis of host, port and path using PATCH method.

Returns a Future of HttpClientRequest.

Implementation

Future<HttpClientRequest> patch(String host, int port, String path) {
  return patchUrl(_getUri(host, port, path));
}