ToolUseExample constructor

ToolUseExample({
  1. ToolUseExample_ExtensionOperation? extensionOperation,
  2. String? functionName,
  3. required String displayName,
  4. required String query,
  5. Struct? requestParams,
  6. Struct? responseParams,
  7. String responseSummary = '',
})

Implementation

ToolUseExample({
  this.extensionOperation,
  this.functionName,
  required this.displayName,
  required this.query,
  this.requestParams,
  this.responseParams,
  this.responseSummary = '',
}) : super(fullyQualifiedName);