PointItem constructor

const PointItem({
  1. required double x,
  2. required double y,
  3. Color color = Colors.blue,
  4. double radius = 6.0,
  5. String? label,
  6. TextStyle? labelStyle,
  7. Offset labelOffset = const Offset(10, -18),
})

Implementation

const PointItem({
  required this.x,
  required this.y,
  this.color = Colors.blue,
  this.radius = 6.0,
  this.label,
  this.labelStyle,
  this.labelOffset = const Offset(10, -18),
});