toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ampIndexStatusVerdict = this.ampIndexStatusVerdict;
  final ampUrl = this.ampUrl;
  final indexingState = this.indexingState;
  final issues = this.issues;
  final lastCrawlTime = this.lastCrawlTime;
  final pageFetchState = this.pageFetchState;
  final robotsTxtState = this.robotsTxtState;
  final verdict = this.verdict;
  return {
    'ampIndexStatusVerdict': ?ampIndexStatusVerdict,
    'ampUrl': ?ampUrl,
    'indexingState': ?indexingState,
    'issues': ?issues,
    'lastCrawlTime': ?lastCrawlTime,
    'pageFetchState': ?pageFetchState,
    'robotsTxtState': ?robotsTxtState,
    'verdict': ?verdict,
  };
}