DestinationNotCrawlableEvidence.fromJson constructor
DestinationNotCrawlableEvidence.fromJson(
- Map json_
Implementation
DestinationNotCrawlableEvidence.fromJson(core.Map json_)
: this(
crawlTime: json_.containsKey('crawlTime')
? json_['crawlTime'] as core.String
: null,
crawledUrl: json_.containsKey('crawledUrl')
? json_['crawledUrl'] as core.String
: null,
reason: json_.containsKey('reason')
? json_['reason'] as core.String
: null,
);