LogEvent constructor

LogEvent({
  1. DateTime? time,
  2. String? message,
  3. String? runID,
})

Returns a new LogEvent instance.

Implementation

LogEvent({
  this.time,
  this.message,
  this.runID,
});