toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final cloudFunctionConfiguration = this.cloudFunctionConfiguration;
final queueConfiguration = this.queueConfiguration;
final topicConfiguration = this.topicConfiguration;
final $children = <_s.XmlNode>[
if (topicConfiguration != null)
topicConfiguration.toXml('TopicConfiguration'),
if (queueConfiguration != null)
queueConfiguration.toXml('QueueConfiguration'),
if (cloudFunctionConfiguration != null)
cloudFunctionConfiguration.toXml('CloudFunctionConfiguration'),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}