attributes property

Map<String, String> attributes

Implementation

Map<String, String> get attributes =>
    _node?.attributes.map((key, value) {
      return MapEntry(key.toString(), value);
    }) ??
    Map<String, String>();