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