ClusterConfig.fromJson constructor
      
      ClusterConfig.fromJson(
    
    
- 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,
      );