toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final grantee = this.grantee;
final permission = this.permission;
final $children = <_s.XmlNode>[
if (grantee != null) grantee.toXml('Grantee'),
if (permission != null)
_s.encodeXmlStringValue('Permission', permission.toValue()),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}