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