toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (fullMatchingImages != null) 'fullMatchingImages': fullMatchingImages!,
  if (pageTitle != null) 'pageTitle': pageTitle!,
  if (partialMatchingImages != null)
    'partialMatchingImages': partialMatchingImages!,
  if (score != null) 'score': score!,
  if (url != null) 'url': url!,
};