Applies a function to each Point in the list.
fn
void forEach(void Function(Point point) fn) { for (final ptr in this) { fn(ptr.ref); } }