Machine constructor

Machine({
  1. Collector? collector,
  2. Company? company,
  3. bool? deleted,
  4. String? id,
  5. dynamic linkedMachine,
  6. String? name,
  7. List<String>? tags,
})

Implementation

Machine(
    {this.collector,
    this.company,
    this.deleted,
    this.id,
    this.linkedMachine,
    this.name,
    this.tags});