parse static method
Implementation
static Title? parse(XmlElement? element) {
if (element == null) {
return null;
}
return Title(
type: element.getAttribute('type'),
value: element.innerText,
);
}
static Title? parse(XmlElement? element) {
if (element == null) {
return null;
}
return Title(
type: element.getAttribute('type'),
value: element.innerText,
);
}