EventDTO constructor

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

Implementation

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