setCornersFromNumList method

void setCornersFromNumList(
  1. List<num> points
)

Implementation

void setCornersFromNumList(List<num> points) {
  setCornersFromInts(
      points[0].toInt(),
      points[1].toInt(),
      points[2].toInt(),
      points[3].toInt(),
      points[4].toInt(),
      points[5].toInt(),
      points[6].toInt(),
      points[7].toInt());
}