Text class Null safety

Inheritance
Implementers
Annotations
  • @Native("Text")

Constructors

Text(String data)
factory

Properties

assignedSlot SlotElement?
read-only
baseUri String?
@JSName('baseURI')read-onlyinherited
childNodes List<Node>
A list of this node's children.
@Returns('NodeList')@Creates('NodeList')read-onlyinherited
data String?
read / writeinherited
firstChild Node?
The first child of this node.
read-onlyinherited
hashCode int
The hash code for this object.
read-onlyinherited
isConnected bool?
read-onlyinherited
lastChild Node?
The last child of this node.
read-onlyinherited
length int?
read-onlyinherited
nextElementSibling Element?
read-onlyinherited
nextNode Node?
The next sibling node.
@JSName('nextSibling')read-onlyinherited
nodeName String?
The name of this node.
read-onlyinherited
nodes List<Node>
A modifiable list of this node's children.
read / writeinherited
nodeType int
The type of node.
read-onlyinherited
nodeValue String?
The value of this node.
read-onlyinherited
on Events
This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.
read-onlyinherited
ownerDocument Document?
The document this node belongs to.
read-onlyinherited
parent Element?
The parent element of this node.
@JSName('parentElement')read-onlyinherited
parentNode Node?
The parent node of this node.
read-onlyinherited
previousElementSibling Element?
read-onlyinherited
previousNode Node?
The previous sibling node.
@JSName('previousSibling')read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
text String?
All text within this node and its descendents.
@JSName('textContent')@JSName('textContent')read / writeinherited
wholeText String
read-only

Methods

addEventListener(String type, EventListener? listener, [bool? useCapture]) → void
inherited
after(Object nodes) → void
inherited
append(Node node) Node
Adds a node to the end of the child nodes list of this node.
@JSName('appendChild')inherited
appendData(String data) → void
inherited
before(Object nodes) → void
inherited
clone(bool? deep) Node
Returns a copy of this node.
@JSName('cloneNode')inherited
contains(Node? other) bool
Returns true if this node contains the specified node.
inherited
deleteData(int offset, int count) → void
inherited
dispatchEvent(Event event) bool
inherited
getDestinationInsertionPoints() List<Node>
@Returns('NodeList')@Creates('NodeList')
getRootNode([Map? options]) Node
inherited
hasChildNodes() bool
Returns true if this node has any children.
inherited
insertAllBefore(Iterable<Node> newNodes, Node child) → void
Inserts all of the nodes into this node directly before child.
inherited
insertBefore(Node node, Node? child) Node
Inserts the given node into this node directly before child. If child is null, then the given node is inserted at the end of this node's child nodes.
inherited
insertData(int offset, String data) → void
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
remove() → void
Removes this node from the DOM.
inherited
removeEventListener(String type, EventListener? listener, [bool? useCapture]) → void
inherited
replaceData(int offset, int count, String data) → void
inherited
replaceWith(Node otherNode) Node
Replaces this node with another node.
inherited
splitText(int offset) Text
substringData(int offset, int count) String
inherited
toString() String
Print out a String representation of this Node.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited