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