Text class Null safety
A span of formatted text within a line in a Quill document.
Text is a leaf node of a document tree.
Parent of a text node is always a Line
, and as a consequence text
node's value cannot contain any line-break characters.
See also:
- Embed, a leaf node representing an embeddable object.
Line
, a node representing a line of text.
- Inheritance
- Object
- LinkedListEntry<
Node> - Leaf
- Text
Constructors
Properties
- documentOffset → int
-
Offset in characters of this node in the document.
read-only, inherited
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- isFirst → bool
-
Returns
true
if this node is the first node in the parent list.read-only, inherited - isLast → bool
-
Returns
true
if this node is the last node in the parent list.read-only, inherited - length → int
-
Length of this node in characters.
read-only, inherited
-
list
→ LinkedList<
Node> ? -
The linked list containing this element. [...]
read-only, inherited
- next → Node?
-
The successor of this element in its linked list. [...]
read-only, inherited
- offset → int
-
Offset in characters of this node relative to parent node. [...]
read-only, inherited
- parent ↔ Line?
-
Current parent of this node. May be null if this node is not mounted.
read / write, inherited
- previous → Node?
-
The predecessor of this element in its linked list. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- style → Style
-
read-only, inherited
- value → String
-
Contents of this node, either a String if this is a Text or an
Embed if this is an BlockEmbed.
read-only, override
Methods
-
adjust(
) → void -
Adjust this text node by merging it with adjacent nodes if they share
the same style.
inherited
-
applyAttribute(
Attribute attribute) → void -
inherited
-
applyStyle(
Style value) → void -
inherited
-
clearStyle(
) → void -
inherited
-
clone(
) → Node -
inherited
-
containsOffset(
int offset) → bool -
Returns
true
if this node contains character at specifiedoffset
in the document.inherited -
cutAt(
int index) → Leaf? -
Cuts a leaf from
index
to the end of this node and returns new node in detached state (e.g.mounted
returnsfalse
). [...]inherited -
delete(
int index, int? len) → void -
inherited
-
format(
Style? style) → void -
Formats this node and optimizes it with adjacent leaf nodes if needed.
inherited
-
insert(
int index, Object data, Style? style) → void -
inherited
-
insertAfter(
Node entry) → void -
Insert an element after this element in this element's linked list. [...]
inherited
-
insertBefore(
Node entry) → void -
Insert an element before this element in this element's linked list. [...]
inherited
-
newInstance(
) → Node - abstract methods begin
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
retain(
int index, int? len, Style? style) → void -
inherited
-
splitAt(
int index) → Leaf? -
Splits this leaf node at
index
and returns new node. [...]inherited -
toDelta(
) → Delta -
inherited
-
toPlainText(
) → String -
toString(
) → String -
A string representation of this object. [...]
inherited
-
unlink(
) → void -
Unlink the element from its linked list. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited