toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final answerRecord = this.answerRecord;
final content = this.content;
final contentFormat = this.contentFormat;
final ingestionTime = this.ingestionTime;
return {
'answerRecord': ?answerRecord,
'content': ?content,
'contentFormat': ?contentFormat,
'ingestionTime': ?ingestionTime,
};
}