DataPoint constructor
const
DataPoint({
- required double x,
- double? dx,
- double y = 0.0,
- required double dy,
- IDataPointStyle? style,
- ThicknessOverride? thickness,
Implementation
const DataPoint({
required this.x,
this.dx,
this.y = 0.0,
required this.dy,
this.style,
this.thickness,
}) : fy = y + dy;