Outpost.fromXml constructor

Outpost.fromXml(
  1. XmlElement elem
)

Implementation

factory Outpost.fromXml(_s.XmlElement elem) {
  return Outpost(
    arn: _s.extractXmlStringValue(elem, 'Arn'),
  );
}