toXML method

List<XMLNode> toXML()

Implementation

List<XMLNode> toXML() {
  return [
    if (originId != null)
      XMLNode.xmlns(
        tag: 'origin-id',
        xmlns: stableIdXmlns,
        attributes: {'id': originId!},
      ),
    if (stanzaIds != null) ...stanzaIds!.map((s) => s.toXML()),
  ];
}