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