LineChartPoint constructor

LineChartPoint(
  1. double x,
  2. double y, {
  3. String? xLabel,
  4. String? yLabel,
})

Implementation

LineChartPoint(
  this.x,
  this.y, {
  this.xLabel,
  this.yLabel,
});