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