SimpleSlopeChartData constructor

const SimpleSlopeChartData({
  1. required String label,
  2. required double start,
  3. required double end,
  4. Color? color,
})

Implementation

const SimpleSlopeChartData({
  required this.label,
  required this.start,
  required this.end,
  this.color,
});