DescribeClusterResponse.fromJson constructor
Implementation
factory DescribeClusterResponse.fromJson(Map<String, dynamic> json) {
  return DescribeClusterResponse(
    clusterInfo: json['clusterInfo'] != null
        ? ClusterInfo.fromJson(json['clusterInfo'] as Map<String, dynamic>)
        : null,
  );
}