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