EventDTO constructor

const EventDTO({
  1. int? id,
  2. String? name,
  3. DeviceEventLevelDTO? level,
  4. DeviceEventId? deviceEventId,
  5. String? event,
  6. FmiDTO? fmi,
  7. int? parameterId,
  8. String? parameter,
  9. DateTime? timestamp,
  10. EventTypeDTO? type,
  11. bool? isCriticalFault,
})

Implementation

const EventDTO({
  this.id,
  this.name,
  this.level,
  this.deviceEventId,
  this.event,
  this.fmi,
  this.parameterId,
  this.parameter,
  this.timestamp,
  this.type,
  this.isCriticalFault,
});