AgentProgress constructor

const AgentProgress({
  1. required String agentId,
  2. required String description,
  3. required int totalTokens,
  4. required int toolUses,
  5. String? lastToolName,
})

Implementation

const AgentProgress({
  required this.agentId,
  required this.description,
  required this.totalTokens,
  required this.toolUses,
  this.lastToolName,
});