toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final retention = this.retention;
final bypassGovernanceRetention = this.bypassGovernanceRetention;
final $children = <_s.XmlNode>[
if (bypassGovernanceRetention != null)
_s.encodeXmlBoolValue(
'BypassGovernanceRetention', bypassGovernanceRetention),
retention.toXml('Retention'),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}