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