Endpoint constructor

Endpoint({
  1. Endpoint? underlying,
  2. int timeout = 0,
  3. bool compress = false,
})

Implementation

Endpoint({
  this.underlying,
  this.timeout = 0,
  this.compress = false,
});