The path parameters of the request.
// /user/:id -> Path pattern // /user/123 -> Request path request.pathParameters['id'] // 123
Map<String, String> get pathParameters;