pathParameters property

Map<String, String> pathParameters
final

Query parameters from the path.

e.g. a route template of '/profile/:id' and a path of '/profile/1' becomes pathParameters['id'] == '1'.

Implementation

final Map<String, String> pathParameters;