toXml method
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final name = this.name;
final region = this.region;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('Region', region.toValue()),
_s.encodeXmlStringValue('Name', name),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}