Path parameters extracted from the URL pattern.
For a route /users/:id and URL /users/123, this would be {'id': '123'}.
/users/:id
/users/123
{'id': '123'}
final Map<String, String> pathParams;