post method

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

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

Returns a Future of HttpClientRequest.

Implementation

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