Tool constructor

Tool({
  1. ToolAnnotations? annotations,
  2. List<String>? dependsOn,
  3. String? description,
  4. JsonSchema? inputSchema,
  5. String? name,
  6. JsonSchema? outputSchema,
})

Implementation

Tool({
  this.annotations,
  this.dependsOn,
  this.description,
  this.inputSchema,
  this.name,
  this.outputSchema,
});