toXml method

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

Implementation

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