ChartPoint constructor

const ChartPoint({
  1. required double x,
  2. required double y,
  3. String? label,
  4. Map<String, Object?> metadata = const {},
})

Implementation

const ChartPoint({
  required this.x,
  required this.y,
  this.label,
  this.metadata = const {},
});