EndpointAddress constructor

const EndpointAddress({
  1. String? hostname,
  2. required String ip,
  3. String? nodeName,
  4. ObjectReference? targetRef,
})

Default constructor.

Implementation

const EndpointAddress({
  this.hostname,
  required this.ip,
  this.nodeName,
  this.targetRef,
});