toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final eTag = this.eTag;
final objectArn = this.objectArn;
final objectVersionId = this.objectVersionId;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('ObjectArn', objectArn),
if (objectVersionId != null)
_s.encodeXmlStringValue('ObjectVersionId', objectVersionId),
_s.encodeXmlStringValue('ETag', eTag),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}