ParsingResult constructor

ParsingResult({
  1. required bool matches,
  2. required String path,
  3. required String patternPath,
  4. required String matchingPath,
  5. required Map<String, String> pathParameters,
})

Implementation

ParsingResult({
  required this.matches,
  required this.path,
  required this.patternPath,
  required this.matchingPath,
  required this.pathParameters,
});