toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final prefix = this.prefix;
final tags = this.tags;
final $children = <_s.XmlNode>[
if (prefix != null) _s.encodeXmlStringValue('Prefix', prefix),
if (tags != null) ...tags.map((e) => e.toXml('Tag')),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}