toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final answerRecord = this.answerRecord;
  final baselineModelVersion = this.baselineModelVersion;
  final sortedTextSections = this.sortedTextSections;
  final text = this.text;
  final textSections = this.textSections;
  return {
    'answerRecord': ?answerRecord,
    'baselineModelVersion': ?baselineModelVersion,
    'sortedTextSections': ?sortedTextSections,
    'text': ?text,
    'textSections': ?textSections,
  };
}