ToolCallResult constructor

ToolCallResult({
  1. required bool toolCalled,
  2. String? toolName,
  3. Map<String, String>? toolInput,
  4. String? toolOutput,
})

Implementation

ToolCallResult({
  required this.toolCalled,
  this.toolName,
  this.toolInput,
  this.toolOutput,
});