$VpcAccessibleServices.fromJson constructor Null safety
- 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,
);