SeriesPoint constructor

const SeriesPoint({
  1. required double x,
  2. required double y,
  3. String? label,
  4. Color? color,
  5. double? radius,
})

Implementation

const SeriesPoint({
  required this.x,
  required this.y,
  this.label,
  this.color,
  this.radius,
});