ChartPointValue constructor

const ChartPointValue({
  1. required double x,
  2. required double y,
  3. String? label,
  4. Object? raw,
})

Implementation

const ChartPointValue({
  required this.x,
  required this.y,
  this.label,
  this.raw,
});