toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final id = this.id;
final ttl = this.ttl;
final trafficPolicyId = this.trafficPolicyId;
final trafficPolicyVersion = this.trafficPolicyVersion;
final $children = <_s.XmlNode>[
_s.encodeXmlIntValue('TTL', ttl),
_s.encodeXmlStringValue('TrafficPolicyId', trafficPolicyId),
_s.encodeXmlIntValue('TrafficPolicyVersion', trafficPolicyVersion),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}