toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final inputSchema = this.inputSchema;
final outputSchema = this.outputSchema;
final tool = this.tool;
final toolsetTool = this.toolsetTool;
return {
'inputSchema': ?inputSchema,
'outputSchema': ?outputSchema,
'tool': ?tool,
'toolsetTool': ?toolsetTool,
};
}