points property

List<Point> get points

getter for points representing signature on 2D canvas

Implementation

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

setter for points representing signature on 2D canvas

Implementation

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