RebootNodeResponse.fromJson constructor

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

Implementation

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