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