TreeRow constructor

const TreeRow({
  1. required Map<String, dynamic> data,
  2. required int depth,
  3. required bool hasChildren,
  4. required String id,
})

Implementation

const TreeRow({
  required this.data,
  required this.depth,
  required this.hasChildren,
  required this.id,
});