ListCrawlersResponse.fromJson constructor
Implementation
factory ListCrawlersResponse.fromJson(Map<String, dynamic> json) {
return ListCrawlersResponse(
crawlerNames: (json['CrawlerNames'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
nextToken: json['NextToken'] as String?,
);
}