ModifyTargetGroupAttributesOutput.fromXml constructor

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