ChartPiePainter constructor

ChartPiePainter(
  1. List<ChartPieBean>? chartBeans,
  2. {double value = 1,
  3. double? R,
  4. double? centerR = 0,
  5. Color? centerColor = defaultColor,
  6. double fontSize = 12,
  7. Color? fontColor}
)

Implementation

ChartPiePainter(
  this.chartBeans, {
  this.value = 1,
  this.R,
  this.centerR = 0,
  this.centerColor = defaultColor,
  this.fontSize = 12,
  this.fontColor,
});