toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final csv = this.csv;
final compressionType = this.compressionType;
final json = this.json;
final parquet = this.parquet;
final $children = <_s.XmlNode>[
if (csv != null) csv.toXml('CSV'),
if (compressionType != null)
_s.encodeXmlStringValue('CompressionType', compressionType.toValue()),
if (json != null) json.toXml('JSON'),
if (parquet != null) parquet.toXml('Parquet'),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}