toXml method

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

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final eventType = this.eventType;
  final lambdaFunctionARN = this.lambdaFunctionARN;
  final includeBody = this.includeBody;
  final $children = <_s.XmlNode>[
    _s.encodeXmlStringValue('LambdaFunctionARN', lambdaFunctionARN),
    _s.encodeXmlStringValue('EventType', eventType.toValue()),
    if (includeBody != null)
      _s.encodeXmlBoolValue('IncludeBody', includeBody),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}