Limit.fromXml constructor
      
      Limit.fromXml(
    
    
- XmlElement elem
Implementation
factory Limit.fromXml(_s.XmlElement elem) {
  return Limit(
    max: _s.extractXmlStringValue(elem, 'Max'),
    name: _s.extractXmlStringValue(elem, 'Name'),
  );
}