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