HTTPMatchRequest constructor

HTTPMatchRequest({
  1. String? name,
  2. StringMatch? uri,
  3. StringMatch? scheme,
  4. StringMatch? method,
  5. StringMatch? authority,
  6. Map<String, StringMatch>? headers,
  7. int? port,
  8. Map<String, String>? sourceLabels,
  9. List<String>? gateways,
  10. Map<String, StringMatch>? queryParams,
  11. bool? ignoreUriCase,
  12. Map<String, StringMatch>? withoutHeaders,
  13. String? sourceNamespace,
})

The main constructor.

Implementation

HTTPMatchRequest({
  this.name,
  this.uri,
  this.scheme,
  this.method,
  this.authority,
  this.headers,
  this.port,
  this.sourceLabels,
  this.gateways,
  this.queryParams,
  this.ignoreUriCase,
  this.withoutHeaders,
  this.sourceNamespace,
});