CustomToolCallOutputItem constructor

const CustomToolCallOutputItem({
  1. required String id,
  2. AgentTag? agent,
  3. required String callId,
  4. required FunctionCallOutput output,
  5. FunctionCallOutputStatus? status,
  6. String? createdBy,
  7. ToolCallCaller? caller,
})

Implementation

const CustomToolCallOutputItem({
  required this.id,
  this.agent,
  required this.callId,
  required this.output,
  this.status,
  this.createdBy,
  this.caller,
});