HttpRouteRouteMatch constructor

HttpRouteRouteMatch({
  1. String? fullPathMatch,
  2. List<HttpRouteHeaderMatch>? headers,
  3. bool? ignoreCase,
  4. String? prefixMatch,
  5. List<HttpRouteQueryParameterMatch>? queryParameters,
  6. String? regexMatch,
})

Implementation

HttpRouteRouteMatch({
  this.fullPathMatch,
  this.headers,
  this.ignoreCase,
  this.prefixMatch,
  this.queryParameters,
  this.regexMatch,
});