convertValue method
Implementation
@override
ContentType? convertValue(XmlElement node) {
final str = node.innerText.trim();
return str.isNotEmpty ? ContentType.parse(str) : null;
}
@override
ContentType? convertValue(XmlElement node) {
final str = node.innerText.trim();
return str.isNotEmpty ? ContentType.parse(str) : null;
}