toXml method

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

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final sSEAlgorithm = this.sSEAlgorithm;
  final kMSMasterKeyID = this.kMSMasterKeyID;
  final $children = <_s.XmlNode>[
    _s.encodeXmlStringValue('SSEAlgorithm', sSEAlgorithm.toValue()),
    if (kMSMasterKeyID != null)
      _s.encodeXmlStringValue('KMSMasterKeyID', kMSMasterKeyID),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}