ArcaneChart constructor

const ArcaneChart({
  1. required List<ArcaneChartPoint> points,
  2. String? title,
  3. String? description,
  4. String color = 'var(--primary)',
  5. Key? key,
})

Implementation

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