GetBucketLifecycleConfigurationOutput.fromXml constructor

GetBucketLifecycleConfigurationOutput.fromXml(
  1. XmlElement elem
)

Implementation

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