LogEntry constructor

LogEntry({
  1. required String id,
  2. required String time,
  3. required LogType type,
  4. required String message,
  5. Object? data,
  6. int? statusCode,
  7. int? durationMs,
})

Implementation

LogEntry({
  required this.id,
  required this.time,
  required this.type,
  required this.message,
  this.data,
  this.statusCode,
  this.durationMs,
});