GetReusableDelegationSetLimitResponse.fromXml constructor

GetReusableDelegationSetLimitResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory GetReusableDelegationSetLimitResponse.fromXml(_s.XmlElement elem) {
  return GetReusableDelegationSetLimitResponse(
    count: _s.extractXmlIntValue(elem, 'Count')!,
    limit: ReusableDelegationSetLimit.fromXml(
        _s.extractXmlChild(elem, 'Limit')!),
  );
}