toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final destinationNotCrawlable = this.destinationNotCrawlable;
  final destinationNotWorking = this.destinationNotWorking;
  final destinationUrl = this.destinationUrl;
  final domainCall = this.domainCall;
  final downloadSize = this.downloadSize;
  final httpCall = this.httpCall;
  final httpCookie = this.httpCookie;
  return {
    'destinationNotCrawlable': ?destinationNotCrawlable,
    'destinationNotWorking': ?destinationNotWorking,
    'destinationUrl': ?destinationUrl,
    'domainCall': ?domainCall,
    'downloadSize': ?downloadSize,
    'httpCall': ?httpCall,
    'httpCookie': ?httpCookie,
  };
}