RddOperationCluster.fromJson constructor

RddOperationCluster.fromJson(
  1. Map json_
)

Implementation

RddOperationCluster.fromJson(core.Map json_)
    : this(
        childClusters: (json_['childClusters'] as core.List?)
            ?.map((value) => RddOperationCluster.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        childNodes: (json_['childNodes'] as core.List?)
            ?.map((value) => RddOperationNode.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        name: json_['name'] as core.String?,
        rddClusterId: json_['rddClusterId'] as core.String?,
      );