HttpRouteHeaderMatch constructor

HttpRouteHeaderMatch({
  1. String? exactMatch,
  2. String? header,
  3. bool? invertMatch,
  4. String? prefixMatch,
  5. bool? presentMatch,
  6. HttpRouteHeaderMatchIntegerRange? rangeMatch,
  7. String? regexMatch,
  8. String? suffixMatch,
})

Implementation

HttpRouteHeaderMatch({
  this.exactMatch,
  this.header,
  this.invertMatch,
  this.prefixMatch,
  this.presentMatch,
  this.rangeMatch,
  this.regexMatch,
  this.suffixMatch,
});