MahasPieChart constructor

const MahasPieChart({
  1. Key? key,
  2. required List<Widget> buildIndicators(),
  3. required List<PieChartSectionData> getSectionsData(),
})

Implementation

const MahasPieChart({
  super.key,
  required this.buildIndicators,
  required this.getSectionsData,
});