NavigationNodeDataInterface constructor
const
NavigationNodeDataInterface({
- required String name,
- required NavigationNodeType type,
- dynamic data,
- List<
NavigationNodeDataInterface> children = const [], - bool isInitiallyExpanded = true,
Implementation
const NavigationNodeDataInterface({
required this.name,
required this.type,
this.data,
this.children = const [],
this.isInitiallyExpanded = true,
});