ScrapeDebugOptions.fromJson constructor
Implementation
factory ScrapeDebugOptions.fromJson(Map<String, dynamic> json) {
return ScrapeDebugOptions(
console: json['console'],
cookies: json['cookies'],
html: json['html'],
network: json['network'],
screenshot: json['screenshot'],
);
}