SessionContextChangedEvent constructor

const SessionContextChangedEvent({
  1. required String id,
  2. required String timestamp,
  3. String? parentId,
  4. bool ephemeral = false,
  5. required String cwd,
  6. String? gitRoot,
  7. String? repository,
  8. String? branch,
})

Implementation

const SessionContextChangedEvent({
  required super.id,
  required super.timestamp,
  super.parentId,
  super.ephemeral,
  required this.cwd,
  this.gitRoot,
  this.repository,
  this.branch,
}) : super(type: 'session.context_changed');