ChatThreadStatusState constructor

const ChatThreadStatusState({
  1. String? text,
  2. DateTime? startedAt,
  3. String? mode,
  4. String? turnId,
  5. List<PendingAgentMessage> pendingMessages = const [],
  6. String? pendingItemId,
  7. int? totalBytes,
  8. int? linesAdded,
  9. int? linesRemoved,
  10. bool supportsAgentMessages = false,
})

Implementation

const ChatThreadStatusState({
  this.text,
  this.startedAt,
  this.mode,
  this.turnId,
  this.pendingMessages = const [],
  this.pendingItemId,
  this.totalBytes,
  this.linesAdded,
  this.linesRemoved,
  this.supportsAgentMessages = false,
});