forEach method
void
forEach(
- void callback(
- T item
Implementation
void forEach(void Function(T item) callback) {
final length = _length;
for (int i = 0; i < length; i++) {
callback(_array[_getCyclicIndex(i)]!);
}
}