queryParametersAll property

Map<String, Iterable> get queryParametersAll

The query parameters of the request, including multiple values for the same parameter, if any.

Example:

http://example.com?name=John&name=Jane

request.queryParametersAll['name'] // [John, Jane]

Implementation

Map<String, Iterable<dynamic>> get queryParametersAll;