head method

Future<Response> head(
  1. ExecutionContext executionContext,
  2. Uri url, {
  3. Map<String, String>? headers,
})

Implementation

Future<Response> head(
  ExecutionContext executionContext,
  Uri url, {
  Map<String, String>? headers,
}) {
  return handleResponse(_wrap.head(url, headers: headers));
}