delete method

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

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

Returns a Future of HttpClientRequest.

Implementation

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