HttpQueryParameterMatch constructor

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

Implementation

HttpQueryParameterMatch({
  this.exactMatch,
  this.name,
  this.presentMatch,
  this.regexMatch,
});