InterceptedLogEntry constructor

InterceptedLogEntry({
  1. required String id,
  2. required String message,
  3. required DateTime timestamp,
  4. required LogType type,
  5. Object? data,
  6. StackTrace? stackTrace,
})

Implementation

InterceptedLogEntry({
  required this.id,
  required this.message,
  required this.timestamp,
  required this.type,
  this.data,
  this.stackTrace,
});