ClusterParameterGroupsMessage.fromXml constructor

ClusterParameterGroupsMessage.fromXml(
  1. 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()),
  );
}