Snake constructor

Snake(
  1. Point head
)

Implementation

Snake(Point head) {
  _points.add(head);
}