LeveledItemWidgetBuilder<Tree> typedef
LeveledItemWidgetBuilder<Tree> =
Widget Function(BuildContext context, int level, Tree item)
The builder function that allows to build any item of type Tree
.
The builder function also provides the level
of the node.
Implementation
typedef LeveledItemWidgetBuilder<Tree> = Widget Function(
BuildContext context, int level, Tree item);