ParsedToolCall constructor

const ParsedToolCall({
  1. required String id,
  2. required String name,
  3. required Map<String, dynamic> arguments,
})

A parsed tool call from the model.

Implementation

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