toXmlString method

Stream<String> toXmlString({
  1. XmlEntityMapping? entityMapping,
})

Converts a sequence of XmlEvent objects to a String.

Implementation

Stream<String> toXmlString({XmlEntityMapping? entityMapping}) =>
    transform(XmlEventEncoder(entityMapping: entityMapping));