DeviceEvent constructor

DeviceEvent({
  1. DateTime? timestamp,
  2. DeviceEventType? type,
  3. String? value,
})

Implementation

DeviceEvent({
  this.timestamp,
  this.type,
  this.value,
});