AppLogEntry constructor
AppLogEntry({
- required int id,
- required AppLogLevel level,
- required String message,
- required DateTime time,
- required List<
String> lines, - String? tag,
- Object? error,
- StackTrace? stackTrace,
Implementation
AppLogEntry({
required this.id,
required this.level,
required this.message,
required this.time,
required this.lines,
this.tag,
this.error,
this.stackTrace,
});