StackPieChart constructor

const StackPieChart({
  1. required List<StackPieChartData> list,
  2. Key? key,
})

Implementation

const StackPieChart({required this.list, Key? key})
    : assert(list.length != 0),
      super(key: key);