toXml method

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

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final replicaModifications = this.replicaModifications;
  final sseKmsEncryptedObjects = this.sseKmsEncryptedObjects;
  final $children = <_s.XmlNode>[
    if (sseKmsEncryptedObjects != null)
      sseKmsEncryptedObjects.toXml('SseKmsEncryptedObjects'),
    if (replicaModifications != null)
      replicaModifications.toXml('ReplicaModifications'),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}