LogEntry constructor

const LogEntry({
  1. required DateTime timestamp,
  2. required String message,
  3. required LogLevel level,
  4. String? tag,
})

Creates a new log entry.

Implementation

const LogEntry({
  required this.timestamp,
  required this.message,
  required this.level,
  this.tag,
});