toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (coverageState != null) 'coverageState': coverageState!,
  if (crawledAs != null) 'crawledAs': crawledAs!,
  if (googleCanonical != null) 'googleCanonical': googleCanonical!,
  if (indexingState != null) 'indexingState': indexingState!,
  if (lastCrawlTime != null) 'lastCrawlTime': lastCrawlTime!,
  if (pageFetchState != null) 'pageFetchState': pageFetchState!,
  if (referringUrls != null) 'referringUrls': referringUrls!,
  if (robotsTxtState != null) 'robotsTxtState': robotsTxtState!,
  if (sitemap != null) 'sitemap': sitemap!,
  if (userCanonical != null) 'userCanonical': userCanonical!,
  if (verdict != null) 'verdict': verdict!,
};