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