HttpRouteQueryParameterMatch constructor

HttpRouteQueryParameterMatch({
  1. String? exactMatch,
  2. bool? presentMatch,
  3. String? queryParameter,
  4. String? regexMatch,
})

Implementation

HttpRouteQueryParameterMatch({
  this.exactMatch,
  this.presentMatch,
  this.queryParameter,
  this.regexMatch,
});