UpdateStackOutput.fromXml constructor

UpdateStackOutput.fromXml(
  1. XmlElement elem
)

Implementation

factory UpdateStackOutput.fromXml(_s.XmlElement elem) {
  return UpdateStackOutput(
    stackId: _s.extractXmlStringValue(elem, 'StackId'),
  );
}