FastChartData constructor

FastChartData({
  1. required double value,
  2. String? label,
  3. Color? color,
})

Implementation

FastChartData({
  required this.value,
  this.label,
  Color? color,
})  : tween = Tween<double>(begin: 0, end: value),
      color = color ?? Colors.blue;