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