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