PieChartLeaf constructor

PieChartLeaf({
  1. Key? key,
  2. required PieChartData data,
  3. required PieChartData targetData,
})

Implementation

PieChartLeaf({
  super.key,
  required this.data,
  required this.targetData,
}) : super(children: targetData.sections.toWidgets());