ControlledEgressConfig.fromJson constructor
ControlledEgressConfig.fromJson(
- Map json_
Implementation
ControlledEgressConfig.fromJson(core.Map json_)
: this(
egressFqdns: (json_['egressFqdns'] as core.List?)
?.map((value) => value as core.String)
.toList(),
marketplaceEnabled: json_['marketplaceEnabled'] as core.bool?,
webProxyIps: (json_['webProxyIps'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);