GetBucketLocationOutput.fromXml constructor

GetBucketLocationOutput.fromXml(
  1. XmlElement elem
)

Implementation

factory GetBucketLocationOutput.fromXml(_s.XmlElement elem) {
  return GetBucketLocationOutput(
    locationConstraint: _s
        .extractXmlStringValue(elem, 'LocationConstraint')
        ?.toBucketLocationConstraint(),
  );
}