ModifyDBProxyResponse.fromXml constructor

ModifyDBProxyResponse.fromXml(
  1. XmlElement elem
)

Implementation

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