Connection constructor

Connection({
  1. String? connectedDeviceId,
  2. String? connectedLinkId,
  3. String? connectionArn,
  4. String? connectionId,
  5. DateTime? createdAt,
  6. String? description,
  7. String? deviceId,
  8. String? globalNetworkId,
  9. String? linkId,
  10. ConnectionState? state,
  11. List<Tag>? tags,
})

Implementation

Connection({
  this.connectedDeviceId,
  this.connectedLinkId,
  this.connectionArn,
  this.connectionId,
  this.createdAt,
  this.description,
  this.deviceId,
  this.globalNetworkId,
  this.linkId,
  this.state,
  this.tags,
});