LogEntry constructor

LogEntry({
  1. required LogEntrySource source,
  2. required LogEntryLevel level,
  3. required String text,
  4. LogEntryCategory? category,
  5. required Timestamp timestamp,
  6. String? url,
  7. int? lineNumber,
  8. StackTraceData? stackTrace,
  9. RequestId? networkRequestId,
  10. String? workerId,
  11. List<RemoteObject>? args,
})

Implementation

LogEntry(
    {required this.source,
    required this.level,
    required this.text,
    this.category,
    required this.timestamp,
    this.url,
    this.lineNumber,
    this.stackTrace,
    this.networkRequestId,
    this.workerId,
    this.args});