toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final crawlTime = this.crawlTime;
final crawledUrl = this.crawledUrl;
final reason = this.reason;
return {
'crawlTime': ?crawlTime,
'crawledUrl': ?crawledUrl,
'reason': ?reason,
};
}