toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final owner = this.owner;
final grants = this.grants;
final $children = <_s.XmlNode>[
owner.toXml('Owner'),
if (grants != null)
_s.XmlElement(
_s.XmlName('Grants'), [], grants.map((e) => e.toXml('member'))),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}