pathParams property

Map<String, String> pathParams
final

A map of path parameters extracted from the url link.

Example if the route is /products/:id and the url link is /products/1 the pathParams is {'id': '1'}

Implementation

final Map<String, String> pathParams;