GKEMasterInfo.fromJson constructor
GKEMasterInfo.fromJson(
- Map json_
Implementation
GKEMasterInfo.fromJson(core.Map json_)
: this(
clusterNetworkUri: json_.containsKey('clusterNetworkUri')
? json_['clusterNetworkUri'] as core.String
: null,
clusterUri: json_.containsKey('clusterUri')
? json_['clusterUri'] as core.String
: null,
externalIp: json_.containsKey('externalIp')
? json_['externalIp'] as core.String
: null,
internalIp: json_.containsKey('internalIp')
? json_['internalIp'] as core.String
: null,
);