OrgFootnoteReference class

A footnote reference, like [fn:1]

Inheritance

Constructors

OrgFootnoteReference(bool isDefinition, String leading, String? name, ({String delimiter, OrgContent value})? definition, String trailing, [String? id])
OrgFootnoteReference.named(String leading, String name, String trailing, [String? id])

Properties

children List<OrgNode>
The children of this node. May be empty (no children) or null (an object that can't have children).
no setteroverride
definition → ({String delimiter, OrgContent value})?
final
hashCode int
The hash code for this object.
no setterinherited
id String
A unique ID for this node. Use this to identify nodes across edits via OrgTree.edit, because OrgParentNodes can be recreated and thus will not be equal via identical.
finalinherited
isDefinition bool
final
leading String
final
name String?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
trailing String
final

Methods

contains(Pattern pattern) bool
Return true if this node or any of its children recursively match the supplied pattern
override
copyWith({bool? isDefinition, String? leading, String? name, ({String delimiter, OrgContent value})? definition, String? trailing, String? id}) OrgFootnoteReference
find<T extends OrgNode>(bool predicate(T), [OrgPath path = const []]) → ({T node, OrgPath path})?
Find the first node in the AST that satisfies predicate. Specify a type T to only visit nodes of that type. Returns a tuple of the node and its path from the root of the tree, or null if no node is found.
inherited
fromChildren(List<OrgNode> children) OrgFootnoteReference
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMarkup() String
inherited
toString() String
A string representation of this object.
override
visit<T extends OrgNode>(bool visitor(T)) bool
Walk AST with visitor. Specify a type T to only visit nodes of that type. The visitor function must return true to continue iterating, or false to stop.
inherited

Operators

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