DeviceRelationship constructor

DeviceRelationship({
  1. String? id,
  2. String? name,
  3. bool? online,
})

Returns a new DeviceRelationship instance.

Implementation

DeviceRelationship({
  this.id,
  this.name,
  this.online,
});