Attr extension type
The Attr interface represents one of an element's attributes as an
object. In most situations, you will directly retrieve the attribute value
as a string (e.g., Element.getAttribute), but some cases may require
interacting with Attr instances (e.g., Element.getAttributeNode).
The core idea of an object of type Attr is the association between a
name and a value. An attribute may also be part of a namespace and, in
this case, it also has a URI identifying the namespace, and a prefix that is
an abbreviation for the namespace.
The name is deemed local when it ignores the eventual namespace prefix and
deemed qualified when it includes the prefix of the namespace, if any,
separated from the local name by a colon (:). We have three cases: an
attribute outside of a namespace, an attribute inside a namespace without a
prefix defined, an attribute inside a namespace with a prefix:
| Attribute | Namespace name | Namespace prefix | Attribute local name | Attribute qualified name | 
|---|---|---|---|---|
| myAttr | none | none | myAttr | myAttr | 
| myAttr | mynamespace | none | myAttr | myAttr | 
| myAttr | mynamespace | myns | myAttr | myns:myAttr | 
Note: This interface represents only attributes present in the tree representation of the Element, being a SVG, an HTML or a MathML element. It doesn't represent the property of an interface associated with such element, such as HTMLTableElement for a
tableelement. (See for more information about attributes and how they are reflected into properties.)
API documentation sourced from MDN Web Docs.
- on
- Implemented types
- Available extensions
Properties
- baseURI → String
- 
  The read-only baseURIproperty of the Node interface returns the absolute base URL of the document containing the node.no setterinherited
- childNodes → NodeList
- 
  The read-only childNodesproperty of the Node interface returns a live NodeList of child Node of the given element where the first child node is assigned index0. Child nodes include elements, text and comments.no setterinherited
- firstChild → Node?
- 
  The read-only firstChildproperty of the Node interface returns the node's first child in the tree, ornullif the node has no children.no setterinherited
- hashCode → int
- 
  The hash code for this object.
  no setterinherited
- isConnected → bool
- 
  The read-only isConnectedproperty of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object.no setterinherited
- isDefinedAndNotNull → bool
- 
      Available on JSAny?, provided by the NullableUndefineableJSAnyExtension extension no setter
- isNull → bool
- 
      Available on JSAny?, provided by the NullableUndefineableJSAnyExtension extension Whether this value corresponds to JavaScriptnull.no setter
- isTruthy → JSBoolean
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result of!!in JavaScript.thisno setter
- isUndefined → bool
- 
      Available on JSAny?, provided by the NullableUndefineableJSAnyExtension extension Whether this value corresponds to JavaScriptundefined.no setter
- isUndefinedOrNull → bool
- 
      Available on JSAny?, provided by the NullableUndefineableJSAnyExtension extension no setter
- lastChild → Node?
- 
  The read-only lastChildproperty of the Node interface returns the last child of the node, ornullif there are no child nodes.no setterinherited
- localName → String
- 
  The read-only localNameproperty of the Attr interface returns the local part of the qualified name of an attribute, that is the name of the attribute, stripped from any namespace in front of it. For example, if the qualified name isxml:lang, the returned local name islang, if the element supports that namespace.no setter
- name → String
- 
  The read-only nameproperty of the Attr interface returns the qualified name of an attribute, that is the name of the attribute, with the namespace prefix, if any, in front of it. For example, if the local name islangand the namespace prefix isxml, the returned qualified name isxml:lang.no setter
- namespaceURI → String?
- 
  The read-only namespaceURIproperty of the Attr interface returns the namespace URI of the attribute, ornullif the element is not in a namespace.no setter
- nextSibling → Node?
- 
  The read-only nextSiblingproperty of the Node interface returns the node immediately following the specified one in their parent's Node.childNodes, or returnsnullif the specified node is the last child in the parent element.no setterinherited
- nodeName → String
- 
  The read-only nodeNameproperty of Node returns the name of the current node as a string.no setterinherited
- nodeType → int
- 
  The read-only nodeTypeproperty of a Node interface is an integer that identifies what the node is. It distinguishes different kind of nodes from each other, such as Element, Text and Comment.no setterinherited
- nodeValue ↔ String?
- 
  The nodeValueproperty of the Node interface returns or sets the value of the current node.getter/setter pairinherited
- not → JSBoolean
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result of!in JavaScript.thisno setter
- ownerDocument → Document?
- 
  The read-only ownerDocumentproperty of the Node interface returns the top-level document object of the node.no setterinherited
- ownerElement → Element?
- 
  The read-only ownerElementproperty of the Attr interface returns the Element the attribute belongs to.no setter
- parentElement → Element?
- 
  The read-only parentElementproperty of Node interface returns the DOM node's parent Element, ornullif the node either has no parent, or its parent isn't a DOM Element.no setterinherited
- parentNode → Node?
- 
  The read-only parentNodeproperty of the Node interface returns the parent of the specified node in the DOM tree.no setterinherited
- prefix → String?
- 
  The read-only prefixproperty of the Attr returns the namespace prefix of the attribute, ornullif no prefix is specified.no setter
- previousSibling → Node?
- 
  The read-only previousSiblingproperty of the Node interface returns the node immediately preceding the specified one in its parent's Node.childNodes list, ornullif the specified node is the first in that list.no setterinherited
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  no setterinherited
- specified → bool
- 
  The read-only specifiedproperty of the Attr interface always returnstrue.no setter
- text ← String
- 
      Available on Node, provided by the NodeGlue extension no getter
- textContent ↔ String?
- 
  The textContentproperty of the Node interface represents the text content of the node and its descendants.getter/setter pairinherited
- value ↔ String
- 
  The valueproperty of the Attr interface contains the value of the attribute.getter/setter pair
Methods
- 
  add(JSAny? any) → JSAny 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis+any
- 
  addEventListener(String type, EventListener? callback, [JSAny options]) → void 
- 
  The addEventListener()method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.inherited
- 
  and(JSAny? any) → JSAny? 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis&&any
- 
  append(Node other) → Node 
- 
  appendChild(Node node) → Node 
- 
  The appendChild()method of the Node interface adds a node to the end of the list of children of a specified parent node.inherited
- 
  callMethod<R extends JSAny?> (JSAny method, [JSAny? arg1, JSAny? arg2, JSAny? arg3, JSAny? arg4]) → R 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Callsmethodon this JSObject with up to four arguments.
- 
  callMethodVarArgs<R extends JSAny?> (JSAny method, [List< JSAny?> ? arguments]) → R
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Callsmethodon this JSObject with a variable number ofarguments.
- 
  clone(bool? deep) → Node 
- 
  cloneNode([bool deep]) → Node 
- 
  The cloneNode()method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not.inherited
- 
  compareDocumentPosition(Node other) → int 
- 
  The compareDocumentPosition()method of the Node interface reports the position of its argument node relative to the node on which it is called.inherited
- 
  contains(Node? other) → bool 
- 
  The contains()method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (Node.childNodes), one of the children's direct children, and so on.inherited
- 
  dartify() → Object? 
- 
      Available on JSAny?, provided by the JSAnyUtilityExtension extension Converts a JavaScript JSON-like value to the Dart equivalent if possible.
- 
  delete(JSAny property) → JSBoolean 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Deletes the property with keypropertyfrom this JSObject.
- 
  dispatchEvent(Event event) → bool 
- 
  The dispatchEvent()method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually withdispatchEvent().inherited
- 
  divide(JSAny? any) → JSAny 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis/any
- 
  equals(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis==any
- 
  exponentiate(JSAny? any) → JSAny 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis**any
- 
  getProperty<R extends JSAny?> (JSAny property) → R 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension The value of the property keypropertyof this JSObject.
- 
  getRootNode([GetRootNodeOptions options]) → Node 
- 
  The getRootNode()method of the Node interface returns the context object's root, which optionally includes the shadow root if it is available.inherited
- 
  greaterThan(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis>any
- 
  greaterThanOrEqualTo(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis>=any
- 
  has(String property) → bool 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Shorthand helper for hasProperty to check whether this JSObject contains the property keyproperty, but takes and returns a Dart value.
- 
  hasChildNodes() → bool 
- 
  The hasChildNodes()method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.inherited
- 
  hasProperty(JSAny property) → JSBoolean 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Whether or not this JSObject contains the property keyproperty.
- 
  insertBefore(Node node, Node? child) → Node 
- 
  The insertBefore()method of the Node interface inserts a node before a reference node as a child of a specified parent node.inherited
- 
  instanceof(JSFunction constructor) → bool 
- 
      Available on JSAny?, provided by the JSAnyUtilityExtension extension Whether thisJSAny?is aninstanceofconstructor.
- 
  instanceOfString(String constructorName) → bool 
- 
      Available on JSAny?, provided by the JSAnyUtilityExtension extension Whether thisJSAny?is aninstanceofthe constructor that is defined byconstructorName, which is looked up in the globalContext.
- 
  isA<T extends JSAny?> () → bool 
- 
      Available on JSAny?, provided by the JSAnyUtilityExtension extension Whether thisJSAny?is an instance of the JavaScript type that is declared byT.
- 
  isDefaultNamespace(String? namespace) → bool 
- 
  The isDefaultNamespace()method of the Node interface accepts a namespace URI as an argument. It returns a boolean value that istrueif the namespace is the default namespace on the given node andfalseif not.inherited
- 
  isEqualNode(Node? otherNode) → bool 
- 
  The isEqualNode()method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes.inherited
- 
  isSameNode(Node? otherNode) → bool 
- 
  The isSameNode()method of the Node interface is a legacy alias the for the===strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).inherited
- 
  lessThan(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis<any
- 
  lessThanOrEqualTo(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis<=any
- 
  lookupNamespaceURI(String? prefix) → String? 
- 
  The lookupNamespaceURI()method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (andnullif not).inherited
- 
  lookupPrefix(String? namespace) → String? 
- 
  The lookupPrefix()method of the Node interface returns a string containing the prefix for a given namespace URI, if present, andnullif not. When multiple prefixes are possible, the first prefix is returned.inherited
- 
  modulo(JSAny? any) → JSAny 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis%any
- 
  multiply(JSAny? any) → JSAny 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis*any
- 
  normalize() → void 
- 
  The normalize()method of the Node interface puts the specified node and all of its sub-tree into a normalized form. In a normalized sub-tree, no text nodes in the sub-tree are empty and there are no adjacent text nodes.inherited
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  notEquals(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis!=any
- 
  or(JSAny? any) → JSAny? 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis||any
- 
  removeChild(Node child) → Node 
- 
  The removeChild()method of the Node interface removes a child node from the DOM and returns the removed node.inherited
- 
  removeEventListener(String type, EventListener? callback, [JSAny options]) → void 
- 
  The removeEventListener()method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener from the target. The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.inherited
- 
  replaceChild(Node node, Node child) → Node 
- 
  The replaceChild()method of the Node interface replaces a child node within the given (parent) node.inherited
- 
  setProperty(JSAny property, JSAny? value) → void 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Write thevalueof property keypropertyof this JSObject.
- 
  strictEquals(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis===any
- 
  strictNotEquals(JSAny? any) → JSBoolean 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis!==any
- 
  subtract(JSAny? any) → JSAny 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis-any
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
- 
  typeofEquals(String typeString) → bool 
- 
      Available on JSAny?, provided by the JSAnyUtilityExtension extension Whether the result oftypeofon thisJSAny?istypeString.
- 
  unsignedRightShift(JSAny? any) → JSNumber 
- 
      Available on JSAny?, provided by the JSAnyOperatorExtension extension The result ofthis>>>any
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited
- 
  operator [](String property) → JSAny? 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Shorthand helper for getProperty to get the value of the property keypropertyof this JSObject, but takes a Dart value.
- 
  operator []=(String property, JSAny? value) → void 
- 
      Available on JSObject, provided by the JSObjectUnsafeUtilExtension extension Shorthand helper for setProperty to write thevalueof the property keypropertyof this JSObject, but takes a Dart value.