ModifyDBProxyTargetGroupResponse.fromXml constructor

ModifyDBProxyTargetGroupResponse.fromXml(
  1. XmlElement elem
)

Implementation

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