ModifyDBClusterSnapshotAttributeResult.fromXml constructor

ModifyDBClusterSnapshotAttributeResult.fromXml(
  1. XmlElement elem
)

Implementation

factory ModifyDBClusterSnapshotAttributeResult.fromXml(_s.XmlElement elem) {
  return ModifyDBClusterSnapshotAttributeResult(
    dBClusterSnapshotAttributesResult: _s
        .extractXmlChild(elem, 'DBClusterSnapshotAttributesResult')
        ?.let((e) => DBClusterSnapshotAttributesResult.fromXml(e)),
  );
}