SessionMetadata constructor

const SessionMetadata({
  1. required String sessionId,
  2. String? customTitle,
  3. String? aiTitle,
  4. String? firstPrompt,
  5. String? lastPrompt,
  6. String? tag,
  7. String? agentName,
  8. String? agentColor,
  9. String? agentSetting,
  10. String? mode,
  11. DateTime? lastModified,
  12. int? fileSize,
  13. WorktreeSessionInfo? worktreeSession,
  14. PrLink? prLink,
})

Implementation

const SessionMetadata({
  required this.sessionId,
  this.customTitle,
  this.aiTitle,
  this.firstPrompt,
  this.lastPrompt,
  this.tag,
  this.agentName,
  this.agentColor,
  this.agentSetting,
  this.mode,
  this.lastModified,
  this.fileSize,
  this.worktreeSession,
  this.prLink,
});