toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final callerReference = this.callerReference;
final encodedKey = this.encodedKey;
final name = this.name;
final comment = this.comment;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('CallerReference', callerReference),
_s.encodeXmlStringValue('Name', name),
_s.encodeXmlStringValue('EncodedKey', encodedKey),
if (comment != null) _s.encodeXmlStringValue('Comment', comment),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}