TargetTcpProxiesScopedList.fromJson constructor
TargetTcpProxiesScopedList.fromJson(
- Map json_
Implementation
TargetTcpProxiesScopedList.fromJson(core.Map json_)
: this(
targetTcpProxies: json_.containsKey('targetTcpProxies')
? (json_['targetTcpProxies'] as core.List)
.map((value) => TargetTcpProxy.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
warning: json_.containsKey('warning')
? TargetTcpProxiesScopedListWarning.fromJson(
json_['warning'] as core.Map<core.String, core.dynamic>)
: null,
);