toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final answerRecord = this.answerRecord;
  final confidence = this.confidence;
  final metadata = this.metadata;
  final snippets = this.snippets;
  final title = this.title;
  final uri = this.uri;
  return {
    'answerRecord': ?answerRecord,
    'confidence': ?confidence,
    'metadata': ?metadata,
    'snippets': ?snippets,
    'title': ?title,
    'uri': ?uri,
  };
}