SessionHandoffEvent constructor

const SessionHandoffEvent({
  1. required String id,
  2. required String timestamp,
  3. String? parentId,
  4. bool ephemeral = false,
  5. required String handoffTime,
  6. required String sourceType,
  7. Map<String, dynamic>? repository,
  8. String? context,
  9. String? summary,
  10. String? remoteSessionId,
})

Implementation

const SessionHandoffEvent({
  required super.id,
  required super.timestamp,
  super.parentId,
  super.ephemeral,
  required this.handoffTime,
  required this.sourceType,
  this.repository,
  this.context,
  this.summary,
  this.remoteSessionId,
}) : super(type: 'session.handoff');