ToolCall constructor

const ToolCall({
  1. required String toolName,
  2. required Map<String, ToolValue> arguments,
  3. String? callId,
})

Implementation

const ToolCall({
  required this.toolName,
  required this.arguments,
  this.callId,
});