VpcDestinationSummary.fromJson constructor
Implementation
factory VpcDestinationSummary.fromJson(Map<String, dynamic> json) {
return VpcDestinationSummary(
roleArn: json['roleArn'] as String?,
securityGroups: (json['securityGroups'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
subnetIds: (json['subnetIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
vpcId: json['vpcId'] as String?,
);
}