ListPlatformApplicationsResponse.fromXml constructor

ListPlatformApplicationsResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory ListPlatformApplicationsResponse.fromXml(_s.XmlElement elem) {
  return ListPlatformApplicationsResponse(
    nextToken: _s.extractXmlStringValue(elem, 'NextToken'),
    platformApplications: _s
        .extractXmlChild(elem, 'PlatformApplications')
        ?.let((elem) => elem
            .findElements('member')
            .map((c) => PlatformApplication.fromXml(c))
            .toList()),
  );
}