Limit.fromXml constructor

Limit.fromXml(
  1. XmlElement elem
)

Implementation

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