HttpRouteRuleMatch constructor

HttpRouteRuleMatch({
  1. String? fullPathMatch,
  2. List<HttpHeaderMatch>? headerMatches,
  3. bool? ignoreCase,
  4. List<MetadataFilter>? metadataFilters,
  5. String? pathTemplateMatch,
  6. String? prefixMatch,
  7. List<HttpQueryParameterMatch>? queryParameterMatches,
  8. String? regexMatch,
})

Implementation

HttpRouteRuleMatch({
  this.fullPathMatch,
  this.headerMatches,
  this.ignoreCase,
  this.metadataFilters,
  this.pathTemplateMatch,
  this.prefixMatch,
  this.queryParameterMatches,
  this.regexMatch,
});