LogEntry constructor

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

Implementation

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