DescribeDBSnapshotAttributesResult.fromXml constructor

DescribeDBSnapshotAttributesResult.fromXml(
  1. XmlElement elem
)

Implementation

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