toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final answerText = this.answerText;
  final citations = this.citations;
  final references = this.references;
  return {
    'answerText': ?answerText,
    'citations': ?citations,
    'references': ?references,
  };
}