$VpcAccessibleServices.fromJson constructor
$VpcAccessibleServices.fromJson(
- Map json_
Implementation
$VpcAccessibleServices.fromJson(core.Map json_)
: this(
allowedServices: json_.containsKey('allowedServices')
? (json_['allowedServices'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
enableRestriction: json_.containsKey('enableRestriction')
? json_['enableRestriction'] as core.bool
: null,
);