RouteMatchList constructor
      
      RouteMatchList({ 
    
- required List<RouteMatchBase> matches,
- required Uri uri,
- Object? extra,
- GoException? error,
- required Map<String, String> pathParameters,
RouteMatchList constructor.
Implementation
RouteMatchList({
  required this.matches,
  required this.uri,
  this.extra,
  this.error,
  required this.pathParameters,
}) : fullPath = _generateFullPath(matches);