toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final headerName = this.headerName;
final headerValue = this.headerValue;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('HeaderName', headerName),
_s.encodeXmlStringValue('HeaderValue', headerValue),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}