LogEntry constructor
LogEntry({
- required LogEntrySource source,
- required LogEntryLevel level,
- required String text,
- LogEntryCategory? category,
- required Timestamp timestamp,
- String? url,
- int? lineNumber,
- StackTraceData? stackTrace,
- RequestId? networkRequestId,
- String? workerId,
- 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});