NavigationNodeDataInterface constructor

const NavigationNodeDataInterface({
  1. required String name,
  2. required NavigationNodeType type,
  3. dynamic data,
  4. List<NavigationNodeDataInterface> children = const [],
  5. bool isInitiallyExpanded = true,
})

Implementation

const NavigationNodeDataInterface({
  required this.name,
  required this.type,
  this.data,
  this.children = const [],
  this.isInitiallyExpanded = true,
});