ListEndpointsByPlatformApplicationResponse.fromXml constructor

ListEndpointsByPlatformApplicationResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory ListEndpointsByPlatformApplicationResponse.fromXml(
    _s.XmlElement elem) {
  return ListEndpointsByPlatformApplicationResponse(
    endpoints: _s.extractXmlChild(elem, 'Endpoints')?.let((elem) =>
        elem.findElements('member').map((c) => Endpoint.fromXml(c)).toList()),
    nextToken: _s.extractXmlStringValue(elem, 'NextToken'),
  );
}