GetLoginProfileResponse.fromXml constructor

GetLoginProfileResponse.fromXml(
  1. XmlElement elem
)

Implementation

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