GetAttributesResult.fromXml constructor

GetAttributesResult.fromXml(
  1. XmlElement elem
)

Implementation

factory GetAttributesResult.fromXml(_s.XmlElement elem) {
  return GetAttributesResult(
    attributes: elem
        .findElements('Attribute')
        .map((c) => Attribute.fromXml(c))
        .toList(),
  );
}