RouteMatchList constructor

RouteMatchList({
  1. required List<RouteMatchBase> matches,
  2. required Uri uri,
  3. Object? extra,
  4. GoException? error,
  5. 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);