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