GetBucketLifecycleOutput.fromXml constructor

GetBucketLifecycleOutput.fromXml(
  1. XmlElement elem
)

Implementation

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