LogOption constructor

const LogOption({
  1. required String path,
  2. required DateTime created,
  3. required DateTime modified,
  4. int messageCount = 0,
  5. int? fileSize,
  6. String? title,
  7. String? summary,
  8. String? teamName,
  9. AgentId? agentId,
  10. List<String> tags = const [],
})

Implementation

const LogOption({
  required this.path,
  required this.created,
  required this.modified,
  this.messageCount = 0,
  this.fileSize,
  this.title,
  this.summary,
  this.teamName,
  this.agentId,
  this.tags = const [],
});