List<Point> points

List of points that make up the line. Typically, you will only want to set this at the beginning. Then use addPoint to add additional points to the line.

Source

List<Point> get points => _points;
void points=(List<Point> points)

Source

set points(List<Point> points) {
  _points = points;
  _pointAges = <double>[];
  for (int i = 0; i < _points.length; i++) {
    _pointAges.add(0.0);
  }
}