pathParameters property

Map<String, String> get pathParameters

The path parameters of the request.

Example:

// /user/:id -> Path pattern
// /user/123 -> Request path

request.pathParameters['id'] // 123

Implementation

Map<String, String> get pathParameters;