AppLogEntry constructor

AppLogEntry({
  1. required int id,
  2. required AppLogLevel level,
  3. required String message,
  4. required DateTime time,
  5. required List<String> lines,
  6. String? tag,
  7. Object? error,
  8. 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,
});