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