ClusterParameterGroupsMessage.fromXml constructor
ClusterParameterGroupsMessage.fromXml(
- XmlElement elem
Implementation
factory ClusterParameterGroupsMessage.fromXml(_s.XmlElement elem) {
return ClusterParameterGroupsMessage(
marker: _s.extractXmlStringValue(elem, 'Marker'),
parameterGroups: _s.extractXmlChild(elem, 'ParameterGroups')?.let(
(elem) => elem
.findElements('ClusterParameterGroup')
.map((c) => ClusterParameterGroup.fromXml(c))
.toList()),
);
}