Restriction.parse constructor
Restriction.parse(
- XmlElement element
Implementation
factory Restriction.parse(XmlElement element) {
return Restriction(
relationship: element.getAttribute('relationship'),
type: element.getAttribute('type'),
value: element.innerText,
);
}