wildcardParameters property
Captured wildcard path segments keyed by the wildcard name.
For /files/*path matching /files/a/b, path is ['a', 'b'].
For /* matching /a/b, * is ['a', 'b'].
Implementation
Map<String, List<String>> get wildcardParameters;