LogEntry constructor

const LogEntry({
  1. required LogLevel level,
  2. required String message,
  3. required DateTime timestamp,
  4. String? tag,
  5. Map<String, dynamic>? data,
  6. Object? error,
  7. StackTrace? stackTrace,
})

Implementation

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