ListScreenshotClustersResponse.fromJson constructor
ListScreenshotClustersResponse.fromJson(
- Map _json
Implementation
ListScreenshotClustersResponse.fromJson(core.Map _json)
: this(
clusters: _json.containsKey('clusters')
? (_json['clusters'] as core.List)
.map<ScreenshotCluster>((value) => ScreenshotCluster.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);