attributes property

LinkedHashMap getter/setter of the element's attributes.

Where key is an attribute name and value is the value of an attribute.

Implementation

@override
LinkedHashMap<Object, String> get attributes => _element.attributes;
  1. @override
void attributes=(LinkedHashMap<Object, String> attributes)

Implementation

@override
set attributes(LinkedHashMap<Object, String> attributes) =>
    _element.attributes = attributes;