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,
);
}