toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final id = this.id;
final status = this.status;
final tierings = this.tierings;
final filter = this.filter;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('Id', id),
if (filter != null) filter.toXml('Filter'),
_s.encodeXmlStringValue('Status', status.toValue()),
...tierings.map((e) => e.toXml('Tiering')),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}