GetInstanceProfileResponse.fromXml constructor
      
      GetInstanceProfileResponse.fromXml(
    
    
- XmlElement elem
Implementation
factory GetInstanceProfileResponse.fromXml(_s.XmlElement elem) {
  return GetInstanceProfileResponse(
    instanceProfile:
        InstanceProfile.fromXml(_s.extractXmlChild(elem, 'InstanceProfile')!),
  );
}