EventLine constructor

const EventLine({
  1. Key? key,
  2. required MeshElement? previous,
  3. required MeshElement message,
  4. required MeshElement? next,
  5. required RoomClient room,
  6. required String path,
  7. required bool showCompletedToolCalls,
  8. String? agentName,
  9. FutureOr<void> openFile(
    1. String path
    )?,
  10. String? pendingItemId,
  11. String? threadStatus,
  12. DateTime? threadStatusStartedAt,
})

Implementation

const EventLine({
  super.key,
  required this.previous,
  required this.message,
  required this.next,
  required this.room,
  required this.path,
  required this.showCompletedToolCalls,
  this.agentName,
  this.openFile,
  this.pendingItemId,
  this.threadStatus,
  this.threadStatusStartedAt,
});