headersAll property

Map<String, List<String>> headersAll
inherited

The HTTP headers with multiple values with case-insensitive keys.

If a header occurs only once, its value is a singleton list. If a header occurs with no value, the empty string is used as the value for that occurrence.

The returned map and the lists it contains are unmodifiable.

Implementation

Map<String, List<String>> get headersAll => _headers;