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