UIntOptions.fromXml constructor

UIntOptions.fromXml(
  1. XmlElement elem
)

Implementation

factory UIntOptions.fromXml(_s.XmlElement elem) {
  return UIntOptions(
    defaultValue: _s.extractXmlIntValue(elem, 'DefaultValue'),
  );
}