OutputLogEntry constructor

const OutputLogEntry({
  1. required String line,
  2. required OutputSource source,
  3. required DateTime timestamp,
})

Creates an output log entry.

Implementation

const OutputLogEntry({
  required this.line,
  required this.source,
  required this.timestamp,
});