IotData constructor

IotData({
  1. String? date,
  2. Company? company,
  3. Collector? collector,
  4. Machine? machine,
  5. bool? deleted,
  6. String? sensor,
  7. double? min,
  8. double? max,
  9. double? avg,
  10. Map<String, dynamic>? datab,
  11. String? id,
})

Implementation

IotData(
    {this.date,
    this.company,
    this.collector,
    this.machine,
    this.deleted,
    this.sensor,
    this.min,
    this.max,
    this.avg,
    this.datab,
    this.id});