DisableSnapshotCopyResult.fromXml constructor

DisableSnapshotCopyResult.fromXml(
  1. XmlElement elem
)

Implementation

factory DisableSnapshotCopyResult.fromXml(_s.XmlElement elem) {
  return DisableSnapshotCopyResult(
    cluster:
        _s.extractXmlChild(elem, 'Cluster')?.let((e) => Cluster.fromXml(e)),
  );
}