ListConfigurationSetsResponse.fromXml constructor

ListConfigurationSetsResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory ListConfigurationSetsResponse.fromXml(_s.XmlElement elem) {
  return ListConfigurationSetsResponse(
    configurationSets: _s.extractXmlChild(elem, 'ConfigurationSets')?.let(
        (elem) => elem
            .findElements('member')
            .map((c) => ConfigurationSet.fromXml(c))
            .toList()),
    nextToken: _s.extractXmlStringValue(elem, 'NextToken'),
  );
}