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