ScrapeDebugOptions.fromJson constructor

ScrapeDebugOptions.fromJson(
  1. Map<String, dynamic> json
)

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'],
  );
}