LaunchConfigurationsType.fromXml constructor

LaunchConfigurationsType.fromXml(
  1. XmlElement elem
)

Implementation

factory LaunchConfigurationsType.fromXml(_s.XmlElement elem) {
  return LaunchConfigurationsType(
    launchConfigurations: _s
        .extractXmlChild(elem, 'LaunchConfigurations')!
        .findElements('member')
        .map((c) => LaunchConfiguration.fromXml(c))
        .toList(),
    nextToken: _s.extractXmlStringValue(elem, 'NextToken'),
  );
}