PointWidget constructor
PointWidget(})
points
- 点集合
color
- 颜色
width
- 画布宽度
height
- 画布宽度
strokeWidth
- 画笔粗细
Implementation
PointWidget(this.points,
{Color color = Colors.blue,
double width = 50,
double height = 50,
double strokeWidth = 1.0})
: super(
color: color,
height: height,
width: width,
strokeWidth: strokeWidth);