points property

List<Point> points

getter for points representing signature on 2D canvas

Implementation

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

setter for points representing signature on 2D canvas

Implementation

set points(List<Point> points) {
  value = points;
}