ChartPie constructor

const ChartPie({
  1. Key? key,
  2. bool animate = false,
  3. List<ChartLineData> lineData = const [],
  4. double height = 200.0,
  5. int titleFontSize = 14,
  6. int arcWidth = 40,
  7. double maskFontSize = 18.0,
  8. bool showLegend = true,
  9. bool showChartTitle = true,
  10. Widget? loadingWidget,
})

Implementation

const ChartPie(
    {Key? key,
    this.animate = false,
    this.lineData = const [],
    this.height = 200.0,
    this.titleFontSize = 14,
    this.arcWidth = 40,
    this.maskFontSize = 18.0,
    this.showLegend = true,
    this.showChartTitle = true,
    this.loadingWidget})
    : super(key: key);