ScatterPoint constructor

const ScatterPoint({
  1. required double x,
  2. required double y,
  3. required Color color,
  4. double size = 6,
  5. String? label,
})

Implementation

const ScatterPoint({
  required this.x,
  required this.y,
  required this.color,
  this.size = 6,
  this.label,
});