getPointsHoles method

dynamic getPointsHoles(
  1. dynamic divisions
)

Implementation

getPointsHoles(divisions) {
  var holesPts = List<dynamic>.filled(holes.length, null);

  for (var i = 0, l = holes.length; i < l; i++) {
    holesPts[i] = holes[i].getPoints(divisions);
  }

  return holesPts;
}