addAll method

void addAll(
  1. Iterable<Point> points
)

Adds a set of points to the line string.

Implementation

void addAll(Iterable<Point> points) => _points.addAll(points);