attributes 属性

Map<String, String> attributes

此元素上所有属性。

对属性映射的任何修改都将自动应用于此元素。

这仅包括不包含命名空间(如'xlink:href')的属性,其他属性可以通过 getNamespacedAttributes 获取。

实现

Map<String, String> get attributes => new _ElementAttributeMap(this);
void attributes = (Map<String, String> value)

实现

set attributes(Map<String, String> value) {
  Map<String, String> attributes = this.attributes;
  attributes.clear();
  for (String key in value.keys) {
    attributes[key] = value[key]!;
  }
}