ModifyTargetGroupAttributesOutput.fromXml constructor
ModifyTargetGroupAttributesOutput.fromXml(
- XmlElement elem
Implementation
factory ModifyTargetGroupAttributesOutput.fromXml(_s.XmlElement elem) {
return ModifyTargetGroupAttributesOutput(
attributes: _s.extractXmlChild(elem, 'Attributes')?.let((elem) => elem
.findElements('member')
.map((c) => TargetGroupAttribute.fromXml(c))
.toList()),
);
}