CommonPrefix.fromXml constructor

CommonPrefix.fromXml(
  1. XmlElement elem
)

Implementation

factory CommonPrefix.fromXml(_s.XmlElement elem) {
  return CommonPrefix(
    prefix: _s.extractXmlStringValue(elem, 'Prefix'),
  );
}