toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final mode = this.mode;
final retainUntilDate = this.retainUntilDate;
final $children = <_s.XmlNode>[
if (mode != null) _s.encodeXmlStringValue('Mode', mode.toValue()),
if (retainUntilDate != null)
_s.encodeXmlDateTimeValue('RetainUntilDate', retainUntilDate,
formatter: _s.iso8601ToJson),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}