CopyPartResult.fromXml constructor

CopyPartResult.fromXml(
  1. XmlElement elem
)

Implementation

factory CopyPartResult.fromXml(_s.XmlElement elem) {
  return CopyPartResult(
    eTag: _s.extractXmlStringValue(elem, 'ETag'),
    lastModified: _s.extractXmlDateTimeValue(elem, 'LastModified'),
  );
}