DescribeDBClusterSnapshotAttributesResult.fromXml constructor

DescribeDBClusterSnapshotAttributesResult.fromXml(
  1. XmlElement elem
)

Implementation

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