points property

List<Point> points

The array of pixel coordinates corresponding to a touch event's touches property.

Implementation

List<Point> get points =>
    jsObject.points.map((f) => Point.fromJsObject(f)).toList();