toAttributeMap method

Map<String, String> toAttributeMap()

Converts the List

Implementation

Map<String, String> toAttributeMap() => <String, String>{
      for (final XmlEventAttribute attribute in this)
        attribute.localName: attribute.value.trim(),
    };