toXml method
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final accountId = this.accountId;
final jobId = this.jobId;
final tags = this.tags;
final $children = <_s.XmlNode>[
_s.XmlElement(_s.XmlName('Tags'), [], tags.map((e) => e.toXml('member'))),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}