LogEntry constructor

LogEntry({
  1. required LoggingLogLevel level,
  2. required dynamic message,
  3. dynamic exception,
  4. String? information,
  5. Map<String, dynamic>? metadata,
  6. required DateTime timestamp,
})

Implementation

LogEntry({
  required this.level,
  required this.message,
  this.exception,
  this.information,
  this.metadata,
  required this.timestamp,
});