CrawledUrl.fromJson constructor

CrawledUrl.fromJson(
  1. Map json_
)

Implementation

CrawledUrl.fromJson(core.Map json_)
  : this(
      body: json_['body'] as core.String?,
      httpMethod: json_['httpMethod'] as core.String?,
      url: json_['url'] as core.String?,
    );