LogEntry constructor

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

Implementation

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