printAll method
void
printAll()
Prints all points in the list.
Implementation
void printAll() {
for (var i = 0; i < length; i++) {
stdout.write('[$i]: ${this[i].ref}');
}
}
Prints all points in the list.
void printAll() {
for (var i = 0; i < length; i++) {
stdout.write('[$i]: ${this[i].ref}');
}
}