buildFrom method

TreeProcessor buildFrom(
  1. XmlElement xmlElement
)

Implementation

TreeProcessor buildFrom(XmlElement xmlElement) {
  _parseXmlRoot(xmlElement);
  if (_processor == null) {
    throw TreeBuilderException("Unable to build tree.");
  }
  return _processor!;
}