Destination constructor

Destination({
  1. List<String>? hosts,
  2. HttpHeaderMatch? httpHeaderMatch,
  3. List<String>? methods,
  4. List<int>? ports,
})

Implementation

Destination({
  this.hosts,
  this.httpHeaderMatch,
  this.methods,
  this.ports,
});