extractXmlIntValue function
Implementation
int? extractXmlIntValue(XmlElement elem, String name) {
final str = extractXmlStringValue(elem, name);
return str == null ? null : int.parse(str);
}
int? extractXmlIntValue(XmlElement elem, String name) {
final str = extractXmlStringValue(elem, name);
return str == null ? null : int.parse(str);
}