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