pathParams property
The three different sources of parameters.
- path - from matching components in the request path
- query - URI query parameters
- post - from POST requests
For example: POST http://example.com/foo/bar/baz?a=1&b=2 x=8&y=9
The parameters from the URL path.
Implementation
late RequestParams pathParams;