toXml method

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

Implementation

_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
  final failoverCriteria = this.failoverCriteria;
  final id = this.id;
  final members = this.members;
  final $children = <_s.XmlNode>[
    _s.encodeXmlStringValue('Id', id),
    failoverCriteria.toXml('FailoverCriteria'),
    members.toXml('Members'),
  ];
  final $attributes = <_s.XmlAttribute>[
    ...?attributes,
  ];
  return _s.XmlElement(
    _s.XmlName(elemName),
    $attributes,
    $children,
  );
}