ModifyTargetGroupOutput.fromXml constructor

ModifyTargetGroupOutput.fromXml(
  1. 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()),
  );
}