GkeCluster.fromJson constructor
GkeCluster.fromJson(
- Map json_
Implementation
GkeCluster.fromJson(core.Map json_)
: this(
cluster: json_.containsKey('cluster')
? json_['cluster'] as core.String
: null,
internalIp: json_.containsKey('internalIp')
? json_['internalIp'] as core.bool
: null,
proxyUrl: json_.containsKey('proxyUrl')
? json_['proxyUrl'] as core.String
: null,
);