PathPatternConditionConfig.fromXml constructor
PathPatternConditionConfig.fromXml(
- XmlElement elem
Implementation
factory PathPatternConditionConfig.fromXml(_s.XmlElement elem) {
return PathPatternConditionConfig(
values: _s
.extractXmlChild(elem, 'Values')
?.let((elem) => _s.extractXmlStringListValues(elem, 'member')),
);
}