DescribeStackSetOutput.fromXml constructor

DescribeStackSetOutput.fromXml(
  1. XmlElement elem
)

Implementation

factory DescribeStackSetOutput.fromXml(_s.XmlElement elem) {
  return DescribeStackSetOutput(
    stackSet:
        _s.extractXmlChild(elem, 'StackSet')?.let((e) => StackSet.fromXml(e)),
  );
}