headWithOptions method

Future<Response> headWithOptions(
  1. dynamic url, {
  2. Map<String, String>? headers,
  3. List? options,
})

Implementation

Future<http.Response> headWithOptions(url,
        {Map<String, String>? headers, List<dynamic>? options}) =>
    _sendUnstreamedWithOptions('HEAD', url, headers, options);