UpdateClusterResponse.fromJson constructor

UpdateClusterResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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