ClusterIstio.fromJson constructor
ClusterIstio.fromJson(
- Map json_
Implementation
ClusterIstio.fromJson(core.Map json_)
: this(
clusterName: json_.containsKey('clusterName')
? json_['clusterName'] as core.String
: null,
location: json_.containsKey('location')
? json_['location'] as core.String
: null,
serviceName: json_.containsKey('serviceName')
? json_['serviceName'] as core.String
: null,
serviceNamespace: json_.containsKey('serviceNamespace')
? json_['serviceNamespace'] as core.String
: null,
);