toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final chunk = this.chunk;
  final score = this.score;
  final sourceDisplayName = this.sourceDisplayName;
  final sourceUri = this.sourceUri;
  final text = this.text;
  return {
    'chunk': ?chunk,
    'score': ?score,
    'sourceDisplayName': ?sourceDisplayName,
    'sourceUri': ?sourceUri,
    'text': ?text,
  };
}