Destination constructor

Destination({
  1. String? host,
  2. int? port,
  3. String? serviceAttachment,
})

Implementation

Destination({
  this.host,
  this.port,
  this.serviceAttachment,
});