S3Location.fromXml constructor
S3Location.fromXml(
- XmlElement elem
Implementation
factory S3Location.fromXml(_s.XmlElement elem) {
return S3Location(
s3Bucket: _s.extractXmlStringValue(elem, 'S3Bucket'),
s3Key: _s.extractXmlStringValue(elem, 'S3Key'),
);
}