GetPlatformApplicationAttributesResponse.fromXml constructor
GetPlatformApplicationAttributesResponse.fromXml(
- XmlElement elem
Implementation
factory GetPlatformApplicationAttributesResponse.fromXml(_s.XmlElement elem) {
return GetPlatformApplicationAttributesResponse(
attributes: Map.fromEntries(
elem.getElement('Attributes')?.findElements('entry').map(
(c) => MapEntry(
_s.extractXmlStringValue(c, 'key')!,
_s.extractXmlStringValue(c, 'value')!,
),
) ??
{},
),
);
}