CreatePolicyResponse.fromXml constructor

CreatePolicyResponse.fromXml(
  1. XmlElement elem
)

Implementation

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