Endpoint constructor

Endpoint({
  1. String? address,
  2. Map<String, String>? annotations,
  3. String? name,
  4. String? network,
  5. int? port,
  6. String? uid,
})

Implementation

Endpoint({
  this.address,
  this.annotations,
  this.name,
  this.network,
  this.port,
  this.uid,
});