ToolCall constructor

const ToolCall({
  1. required String name,
  2. required Map<String, Object?> arguments,
})

Creates a tool call.

Implementation

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