toXml method
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final objects = this.objects;
final quiet = this.quiet;
final $children = <_s.XmlNode>[
...objects.map((e) => e.toXml('Object')),
if (quiet != null) _s.encodeXmlBoolValue('Quiet', quiet),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}