toXml method

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

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final ssekms = this.ssekms;
  final sses3 = this.sses3;
  final $children = <_s.XmlNode>[
    if (sses3 != null) sses3.toXml('SSE-S3'),
    if (ssekms != null) ssekms.toXml('SSE-KMS'),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}