OptionVersion.fromXml constructor

OptionVersion.fromXml(
  1. XmlElement elem
)

Implementation

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