In dart there are total 5 types of Loops.
For Loop
For....in Loop
For Each Loop
While Loop
Do.....While Loop
In this section we will see about Dart " For each Loop " .
- The for-each loop iterates over all elements in some container/collectible and passes the elements to some specific function.
void main() {
var list = [2, 4, 8, 16, 32];
list.forEach((n) => print('$n'));
}
ย