fromSource static method

AssembleElement fromSource(
  1. String source
)

Implementation

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