DescribeDBSnapshotAttributesResult.fromXml constructor
DescribeDBSnapshotAttributesResult.fromXml(
- XmlElement elem
Implementation
factory DescribeDBSnapshotAttributesResult.fromXml(_s.XmlElement elem) {
return DescribeDBSnapshotAttributesResult(
dBSnapshotAttributesResult: _s
.extractXmlChild(elem, 'DBSnapshotAttributesResult')
?.let((e) => DBSnapshotAttributesResult.fromXml(e)),
);
}