GetBucketLifecycleConfigurationOutput.fromXml constructor
GetBucketLifecycleConfigurationOutput.fromXml(
- XmlElement elem
Implementation
factory GetBucketLifecycleConfigurationOutput.fromXml(_s.XmlElement elem) {
return GetBucketLifecycleConfigurationOutput(
rules: elem
.findElements('Rule')
.map((c) => LifecycleRule.fromXml(c))
.toList(),
);
}