allHeaderFields property

Map<String, String> allHeaderFields

The HTTP headers of the response.

See HTTPURLResponse.allHeaderFields

Implementation

Map<String, String> get allHeaderFields {
  final headers = ncb.NSDictionary.castFrom(_httpUrlResponse.allHeaderFields);
  return stringNSDictionaryToMap(headers);
}