toXml method

XmlElement toXml(
  1. String elemName, {
  2. List<XmlAttribute>? attributes,
})

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final expression = this.expression;
  final expressionType = this.expressionType;
  final inputSerialization = this.inputSerialization;
  final outputSerialization = this.outputSerialization;
  final $children = <_s.XmlNode>[
    inputSerialization.toXml('InputSerialization'),
    _s.encodeXmlStringValue('ExpressionType', expressionType.toValue()),
    _s.encodeXmlStringValue('Expression', expression),
    outputSerialization.toXml('OutputSerialization'),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}