PointX constructor

PointX({
  1. required double x,
  2. String? label,
})

Implementation

PointX({
  required this.x,
  this.label,
});