ListClustersOutput.fromJson constructor
Implementation
factory ListClustersOutput.fromJson(Map<String, dynamic> json) {
return ListClustersOutput(
clusters: (json['Clusters'] as List?)
?.whereNotNull()
.map((e) => ClusterSummary.fromJson(e as Map<String, dynamic>))
.toList(),
marker: json['Marker'] as String?,
);
}