ClusterConfig.fromJson constructor

ClusterConfig.fromJson(
  1. Map json_
)

Implementation

ClusterConfig.fromJson(core.Map json_)
  : this(
      clusterAutoscalingConfig:
          json_.containsKey('clusterAutoscalingConfig')
              ? ClusterAutoscalingConfig.fromJson(
                json_['clusterAutoscalingConfig']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );