headersAll property

Map<String, List<String>> get headersAll

The HTTP headers of the current request 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 => _binding.request.headers;