queryParams property

Map<String, String> get queryParams

Query parameters from the URL.

For URL /users?sort=name&order=asc, this would be {'sort': 'name', 'order': 'asc'}.

Implementation

Map<String, String> get queryParams => shelfRequest.url.queryParameters;