Node class

Node of a tree, representing one Widget

Constructors

Node({required int objectId, required Type runtimeType, State<StatefulWidget>? state, String? subText, required List<String> attributes, Key? key})

Properties

attributes List<String>
Description of the widget
final
children List<Node>
Descendant nodes.
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Key attatched to the widget
final
objectId int
Object ID of the widget
final
runtimeType Type
Type of the widget
final
state State<StatefulWidget>?
State of the widget if the widget is StatefulWidget
final
subText String?
subtext of the widget
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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