PieChartItem constructor

PieChartItem(
  1. String label,
  2. double weight, {
  3. String? color,
})

Implementation

PieChartItem(this.label, this.weight, {this.color})
    : shortLabel = (label.length > maxLabelLength) ? '${label.substring(0, maxLabelLength - 2)}..' : label;