ChartProps constructor

const ChartProps({
  1. required List<ChartPointProps> points,
  2. String? title,
  3. String? description,
  4. String color = 'var(--primary)',
})

Implementation

const ChartProps({
  required this.points,
  this.title,
  this.description,
  this.color = 'var(--primary)',
});