toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final agentConfig = this.agentConfig;
final agents = this.agents;
final developerInstruction = this.developerInstruction;
final events = this.events;
final tools = this.tools;
final toolsText = this.toolsText;
final turns = this.turns;
return {
'agentConfig': ?agentConfig,
'agents': ?agents,
'developerInstruction': ?developerInstruction,
'events': ?events,
'tools': ?tools,
'toolsText': ?toolsText,
'turns': ?turns,
};
}