ListStorageLensConfigurationsResult.fromXml constructor
ListStorageLensConfigurationsResult.fromXml(
- XmlElement elem
Implementation
factory ListStorageLensConfigurationsResult.fromXml(_s.XmlElement elem) {
return ListStorageLensConfigurationsResult(
nextToken: _s.extractXmlStringValue(elem, 'NextToken'),
storageLensConfigurationList: elem
.findElements('StorageLensConfiguration')
.map((c) => ListStorageLensConfigurationEntry.fromXml(c))
.toList(),
);
}