Chunk constructor

Chunk({
  1. AgentTransfer? agentTransfer,
  2. Blob? blob,
  3. Map<String, Object?>? defaultVariables,
  4. Image? image,
  5. Map<String, Object?>? payload,
  6. String? text,
  7. ToolCall? toolCall,
  8. ToolResponse? toolResponse,
  9. String? transcript,
  10. Map<String, Object?>? updatedVariables,
})

Implementation

Chunk({
  this.agentTransfer,
  this.blob,
  this.defaultVariables,
  this.image,
  this.payload,
  this.text,
  this.toolCall,
  this.toolResponse,
  this.transcript,
  this.updatedVariables,
});