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