ModifyTargetGroupOutput.fromXml constructor
ModifyTargetGroupOutput.fromXml(
- XmlElement elem
Implementation
factory ModifyTargetGroupOutput.fromXml(_s.XmlElement elem) {
return ModifyTargetGroupOutput(
targetGroups: _s.extractXmlChild(elem, 'TargetGroups')?.let((elem) => elem
.findElements('member')
.map((c) => TargetGroup.fromXml(c))
.toList()),
);
}