CreateLoginProfileResponse.fromXml constructor

CreateLoginProfileResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory CreateLoginProfileResponse.fromXml(_s.XmlElement elem) {
  return CreateLoginProfileResponse(
    loginProfile:
        LoginProfile.fromXml(_s.extractXmlChild(elem, 'LoginProfile')!),
  );
}