Sensor constructor

Sensor({
  1. String? id,
  2. Company? company,
  3. Machine? machine,
  4. Collector? collector,
  5. Config? config,
  6. Api? api,
  7. String? key,
  8. List<String>? tags,
  9. bool? deleted,
  10. String? name,
  11. List<String>? buildTogether,
  12. bool? buildDataChanges,
})

Implementation

Sensor(
    {this.id,
    this.company,
    this.machine,
    this.collector,
    this.config,
    this.api,
    this.key,
    this.tags,
    this.deleted,
    this.name,
    this.buildTogether,
    this.buildDataChanges});