LinkedVpcNetwork.fromJson constructor
LinkedVpcNetwork.fromJson(
- Map json_
Implementation
LinkedVpcNetwork.fromJson(core.Map json_)
: this(
excludeExportRanges: json_.containsKey('excludeExportRanges')
? (json_['excludeExportRanges'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
includeExportRanges: json_.containsKey('includeExportRanges')
? (json_['includeExportRanges'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
uri: json_.containsKey('uri') ? json_['uri'] as core.String : null,
);