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