queryParameters property

Map<String, String> get queryParameters

The query parameters of the request.

Example:

http://example.com?name=John

request.queryParameters['name'] // John

Note:

If there are multiple values for the same parameter, only the last value will be returned.

Example:

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

request.queryParameters['name'] // Jane

Implementation

Map<String, String> get queryParameters;