toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final domainName = this.domainName;
final originAccessIdentity = this.originAccessIdentity;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('DomainName', domainName),
_s.encodeXmlStringValue('OriginAccessIdentity', originAccessIdentity),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}