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