drawPoints method

  1. @override
void drawPoints(
  1. PointMode pointMode,
  2. List<Offset> points,
  3. Paint paint
)
override

Draws a sequence of points according to the given PointMode.

The points argument is interpreted as offsets from the origin.

The paint is used for each point (PointMode.points) or line (PointMode.lines or PointMode.polygon), ignoring Paint.style.

See also:

Implementation

@override
void drawPoints(PointMode pointMode, List<Offset> points, Paint paint) {
  // TODO: implement drawPoints
}