getStartPoint method

Point? getStartPoint()

Implementation

Point? getStartPoint() {
  if (isEmpty()) {
    return null;
  }
  return getPointN(0);
}