Endpoint constructor

const Endpoint({
  1. required List<String> addresses,
  2. EndpointConditions? conditions,
  3. Map<String, String>? deprecatedTopology,
  4. EndpointHints? hints,
  5. String? hostname,
  6. String? nodeName,
  7. ObjectReference? targetRef,
  8. String? zone,
})

Default constructor.

Implementation

const Endpoint({
  required this.addresses,
  this.conditions,
  this.deprecatedTopology,
  this.hints,
  this.hostname,
  this.nodeName,
  this.targetRef,
  this.zone,
});