toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final agentData = this.agentData;
final otherData = this.otherData;
final prompt = this.prompt;
final reference = this.reference;
final response = this.response;
final rubricGroups = this.rubricGroups;
return {
'agentData': ?agentData,
'otherData': ?otherData,
'prompt': ?prompt,
'reference': ?reference,
'response': ?response,
'rubricGroups': ?rubricGroups,
};
}