ToolCall constructor

ToolCall({
  1. required String toolCallId,
  2. required String toolName,
  3. required dynamic input,
  4. bool? providerExecuted,
  5. bool? isDynamic,
  6. String? thoughtSignature,
})

Implementation

ToolCall({
  required this.toolCallId,
  required this.toolName,
  required this.input,
  this.providerExecuted,
  this.isDynamic,
  this.thoughtSignature,
});