NamespacedGkeDeploymentTarget.fromJson constructor

NamespacedGkeDeploymentTarget.fromJson(
  1. Map json_
)

Implementation

NamespacedGkeDeploymentTarget.fromJson(core.Map json_)
    : this(
        clusterNamespace: json_.containsKey('clusterNamespace')
            ? json_['clusterNamespace'] as core.String
            : null,
        targetGkeCluster: json_.containsKey('targetGkeCluster')
            ? json_['targetGkeCluster'] as core.String
            : null,
      );