ChartPieBean constructor

ChartPieBean({
  1. required double value,
  2. String? type,
  3. double? rate,
  4. Color? color,
  5. double? startAngle,
  6. double? sweepAngle,
})

Implementation

ChartPieBean({
  required this.value,
  this.type,
  this.rate,
  this.color,
  this.startAngle,
  this.sweepAngle,
});