HttpRouteRuleMatch constructor

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

Implementation

HttpRouteRuleMatch({
  this.fullPathMatch,
  this.headerMatches = const [],
  this.ignoreCase,
  this.metadataFilters = const [],
  this.pathTemplateMatch,
  this.prefixMatch,
  this.queryParameterMatches = const [],
  this.regexMatch,
}) : super(fullyQualifiedName);