ModifyGlobalClusterResult.fromXml constructor

ModifyGlobalClusterResult.fromXml(
  1. XmlElement elem
)

Implementation

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