ListStorageLensConfigurationsResult.fromXml constructor

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