toJson method

Map<String, dynamic> toJson()

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,
  };
}