head abstract method

Future<Response> head({
  1. Map<String, String>? headers,
  2. Uri? uri,
})
inherited

Send a HEAD request.

If uri is given, the request will be sent to that exact uri. If uri is null, the uri on the BaseRequest will be used (and is thus required).

If headers are given, they will be merged with the set of headers already defined on the BaseRequest.

Implementation

Future<Response> head({Map<String, String>? headers, Uri? uri});