fromSource static method
Implementation
static AssembleElement fromSource(String source) {
  final doc = XmlDocument.parse(source);
  final root = doc.rootElement;
  return _fromXml(root);
}static AssembleElement fromSource(String source) {
  final doc = XmlDocument.parse(source);
  final root = doc.rootElement;
  return _fromXml(root);
}