toJson method

Map<String, dynamic> toJson()

Implementation

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