LogItem constructor

LogItem({
  1. required String? location,
  2. required String? icon,
  3. required Object? message,
  4. required Set<Symbol> tags,
  5. required bool showId,
  6. required bool showTags,
  7. required bool showTimestamp,
  8. required Frame? frame,
})

Implementation

LogItem({
  required this.location,
  required this.icon,
  required this.message,
  required this.tags,
  required this.showId,
  required this.showTags,
  required this.showTimestamp,
  required this.frame,
}) : id = const Uuid().v4(),
     timestamp = DateTime.now();