toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentId = this.agentId;
  final agentType = this.agentType;
  final description = this.description;
  final developerInstruction = this.developerInstruction;
  final subAgents = this.subAgents;
  final tools = this.tools;
  return {
    'agentId': ?agentId,
    'agentType': ?agentType,
    'description': ?description,
    'developerInstruction': ?developerInstruction,
    'subAgents': ?subAgents,
    'tools': ?tools,
  };
}