MarkerDataPoint constructor

MarkerDataPoint({
  1. num? x,
  2. num? y,
})

Returns a new MarkerDataPoint instance.

Implementation

MarkerDataPoint({
  this.x,
  this.y,
});