UrlMapQueryParameterMatch constructor

const UrlMapQueryParameterMatch({
  1. required TfArg<String> name,
  2. TfArg<String>? exactMatch,
  3. TfArg<String>? regexMatch,
  4. TfArg<bool>? presentMatch,
})

Implementation

const UrlMapQueryParameterMatch({
  required this.name,
  this.exactMatch,
  this.regexMatch,
  this.presentMatch,
});