toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final action = this.action;
final answerRecord = this.answerRecord;
final createTime = this.createTime;
final inputParameters = this.inputParameters;
final state = this.state;
final tool = this.tool;
final toolDisplayDetails = this.toolDisplayDetails;
final toolDisplayName = this.toolDisplayName;
return {
'action': ?action,
'answerRecord': ?answerRecord,
'createTime': ?createTime,
'inputParameters': ?inputParameters,
'state': ?state,
'tool': ?tool,
'toolDisplayDetails': ?toolDisplayDetails,
'toolDisplayName': ?toolDisplayName,
};
}