ListQueryLoggingConfigsResponse.fromXml constructor
ListQueryLoggingConfigsResponse.fromXml(
- XmlElement elem
Implementation
factory ListQueryLoggingConfigsResponse.fromXml(_s.XmlElement elem) {
return ListQueryLoggingConfigsResponse(
queryLoggingConfigs: _s
.extractXmlChild(elem, 'QueryLoggingConfigs')!
.findElements('QueryLoggingConfig')
.map((c) => QueryLoggingConfig.fromXml(c))
.toList(),
nextToken: _s.extractXmlStringValue(elem, 'NextToken'),
);
}