DBClusterSnapshotAttributesResult.fromXml constructor

DBClusterSnapshotAttributesResult.fromXml(
  1. XmlElement elem
)

Implementation

factory DBClusterSnapshotAttributesResult.fromXml(_s.XmlElement elem) {
  return DBClusterSnapshotAttributesResult(
    dBClusterSnapshotAttributes: _s
        .extractXmlChild(elem, 'DBClusterSnapshotAttributes')
        ?.let((elem) => elem
            .findElements('DBClusterSnapshotAttribute')
            .map((c) => DBClusterSnapshotAttribute.fromXml(c))
            .toList()),
    dBClusterSnapshotIdentifier:
        _s.extractXmlStringValue(elem, 'DBClusterSnapshotIdentifier'),
  );
}