DeviceGroup constructor

const DeviceGroup({
  1. String? id,
  2. String? name,
  3. List<String>? nodes,
  4. List<DeviceGroup>? subgroups,
  5. String? type,
})

Implementation

const DeviceGroup({
  this.id,
  this.name,
  this.nodes,
  this.subgroups,
  this.type,
});