get method

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

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

Returns a Future of HttpClientRequest.

Implementation

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