LogEntry constructor

const LogEntry({
  1. required String id,
  2. required String message,
  3. required LogType type,
  4. required List<String> tags,
  5. required DateTime timestamp,
})

Implementation

const LogEntry({
  required this.id,
  required this.message,
  required this.type,
  required this.tags,
  required this.timestamp,
});