AuthorizeCacheSecurityGroupIngressResult.fromXml constructor
AuthorizeCacheSecurityGroupIngressResult.fromXml(
- XmlElement elem
Implementation
factory AuthorizeCacheSecurityGroupIngressResult.fromXml(_s.XmlElement elem) {
return AuthorizeCacheSecurityGroupIngressResult(
cacheSecurityGroup: _s
.extractXmlChild(elem, 'CacheSecurityGroup')
?.let((e) => CacheSecurityGroup.fromXml(e)),
);
}