GenerateContentToolCall constructor

GenerateContentToolCall({
  1. required String toolCallId,
  2. required String toolName,
  3. required dynamic input,
  4. bool? providerExecuted,
  5. bool? isDynamic,
  6. String? thoughtSignature,
  7. Map<String, dynamic>? providerMetadata,
})

Implementation

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