toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (chunk != null) 'chunk': chunk!,
  if (score != null) 'score': score!,
  if (sourceDisplayName != null) 'sourceDisplayName': sourceDisplayName!,
  if (sourceUri != null) 'sourceUri': sourceUri!,
  if (text != null) 'text': text!,
};