EtchPathAddPolygon constructor

EtchPathAddPolygon({
  1. required List<Offset> points,
  2. bool close = true,
})

Implementation

EtchPathAddPolygon({
  required List<Offset> points,
  bool close = true,
})  : _points = points,
      _close = close;