toXml method
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final noncurrentDays = this.noncurrentDays;
final $children = <_s.XmlNode>[
if (noncurrentDays != null)
_s.encodeXmlIntValue('NoncurrentDays', noncurrentDays),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}