Line data Source code
1 : class ChartPoint { 2 : final double x; 3 : final double y; 4 : 5 2 : ChartPoint(this.x, this.y); 6 : }