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