TspTreeNode constructor

const TspTreeNode({
  1. required String id,
  2. required String label,
  3. List<TspTreeNode> children = const [],
})

Implementation

const TspTreeNode({required this.id, required this.label, this.children = const []});