SessionPlanChangedEvent constructor

const SessionPlanChangedEvent({
  1. required String id,
  2. required String timestamp,
  3. String? parentId,
  4. bool ephemeral = false,
  5. required String operation,
})

Implementation

const SessionPlanChangedEvent({
  required super.id,
  required super.timestamp,
  super.parentId,
  super.ephemeral,
  required this.operation,
}) : super(type: 'session.plan_changed');