parameters property

Iterable<String> parameters

Collection of parameters that are supplied in path.

Implementation

Iterable<String> get parameters {
  return _findParameters.allMatches(path).map((m) => m[1]!);
}