DBClusterParameterGroupsMessage.fromXml constructor

DBClusterParameterGroupsMessage.fromXml(
  1. XmlElement elem
)

Implementation

factory DBClusterParameterGroupsMessage.fromXml(_s.XmlElement elem) {
  return DBClusterParameterGroupsMessage(
    dBClusterParameterGroups: _s
        .extractXmlChild(elem, 'DBClusterParameterGroups')
        ?.let((elem) => elem
            .findElements('DBClusterParameterGroup')
            .map((c) => DBClusterParameterGroup.fromXml(c))
            .toList()),
    marker: _s.extractXmlStringValue(elem, 'Marker'),
  );
}