OptionVersion.fromXml constructor
OptionVersion.fromXml(
- XmlElement elem
Implementation
factory OptionVersion.fromXml(_s.XmlElement elem) {
return OptionVersion(
isDefault: _s.extractXmlBoolValue(elem, 'IsDefault'),
version: _s.extractXmlStringValue(elem, 'Version'),
);
}