put method

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

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

Returns a Future of HttpClientRequest.

Implementation

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