SetSecurityGroupsOutput.fromXml constructor
SetSecurityGroupsOutput.fromXml(
- XmlElement elem
Implementation
factory SetSecurityGroupsOutput.fromXml(_s.XmlElement elem) {
return SetSecurityGroupsOutput(
securityGroupIds: _s
.extractXmlChild(elem, 'SecurityGroupIds')
?.let((elem) => _s.extractXmlStringListValues(elem, 'member')),
);
}