toXml method

XmlNode toXml()

Implementation

XmlNode toXml() {
  final builder = XmlBuilder();
  builder.element('SourceSelectionCriteria', nest: () {
    builder.element('SseKmsEncryptedObjects',
        nest: sseKmsEncryptedObjects!.toXml());
  });
  return builder.buildDocument();
}