LogEntry constructor

LogEntry({
  1. required String category,
  2. required String message,
  3. String level = LogLevel.log,
  4. List context = const [],
})

Implementation

LogEntry({
  required this.category,
  required this.message,
  this.level = LogLevel.log,
  this.context = const [],
});