GetReusableDelegationSetResponse.fromXml constructor

GetReusableDelegationSetResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory GetReusableDelegationSetResponse.fromXml(_s.XmlElement elem) {
  return GetReusableDelegationSetResponse(
    delegationSet:
        DelegationSet.fromXml(_s.extractXmlChild(elem, 'DelegationSet')!),
  );
}