ExitStandbyAnswer.fromXml constructor
ExitStandbyAnswer.fromXml(
- XmlElement elem
Implementation
factory ExitStandbyAnswer.fromXml(_s.XmlElement elem) {
return ExitStandbyAnswer(
activities: _s.extractXmlChild(elem, 'Activities')?.let((elem) =>
elem.findElements('member').map((c) => Activity.fromXml(c)).toList()),
);
}