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