toXml method

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

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final streamingDistributionConfig = this.streamingDistributionConfig;
  final tags = this.tags;
  final $children = <_s.XmlNode>[
    streamingDistributionConfig.toXml('StreamingDistributionConfig'),
    tags.toXml('Tags'),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}