TreeNode class

Constructors

TreeNode.new({TreeNodeUi? customUi, required String title, required dynamic value, required String key, List<TreeNode> preLoadedChildren = const [], bool isLastItem = false, Completer<List<TreeNode>>? completer})

Properties

completer Completer<List<TreeNode>>
getter/setter pair
customUi TreeNodeUi?
final
hashCode int
The hash code for this object.
no setterinherited
isLastItem bool
final
key String
final
preLoadedChildren List<TreeNode>
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String
final
value → dynamic
final

Methods

copyWith({String? title, dynamic value, String? key, List<TreeNode>? preLoadedChildren, bool? isLastItem, TreeNodeUi? customUi, Completer<List<TreeNode>>? completer}) TreeNode
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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