linearPath method

Drawable linearPath(
  1. List<PointD> points
)

Draws a set of lines connecting the specified points.

Implementation

//
// * [points] is an array of [PointD]
Drawable linearPath(List<PointD> points) {
  return _buildDrawable(OpSetBuilder.linearPath(points, true, drawConfig!));
}