GetPolicyResponse.fromXml constructor

GetPolicyResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory GetPolicyResponse.fromXml(_s.XmlElement elem) {
  return GetPolicyResponse(
    policy: _s.extractXmlChild(elem, 'Policy')?.let((e) => Policy.fromXml(e)),
  );
}