VpcConfig.fromJson constructor
Implementation
factory VpcConfig.fromJson(Map<String, dynamic> json) {
return VpcConfig(
securityGroupIds: (json['SecurityGroupIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
subnetIds: (json['SubnetIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}