CreateInstanceProfileResponse.fromXml constructor

CreateInstanceProfileResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory CreateInstanceProfileResponse.fromXml(_s.XmlElement elem) {
  return CreateInstanceProfileResponse(
    instanceProfile:
        InstanceProfile.fromXml(_s.extractXmlChild(elem, 'InstanceProfile')!),
  );
}