OrgChartController<E> constructor
OrgChartController<E> ({})
Implementation
OrgChartController({
required List<E> items,
this.boxSize = const Size(200, 100),
this.spacing = const Offset(20, 50),
required this.idProvider,
required this.toProvider,
this.orientation = OrgChartOrientation.leftToRight,
}) : super() {
this.items = items;
}