Polygon constructor
默认构造函数
Implementation
Polygon(
{@required this.points,
this.strokeWidth = 10,
this.strokeColor,
this.fillColor,
this.visible = true,
this.joinType = JoinType.bevel})
: assert(points != null && points.length > 0),
super();