getXmlParser method
Creates and returns a new XmlParser for the provided XML content string.
Each invocation produces a fresh StringXmlParser capable of parsing the given XML text into a structured representation suitable for deserialization.
Implementation
XmlParser getXmlParser(String content) => StringXmlParser(content);