final List<int> x = [10, 20, 30]; for (var number in x) { debugPrint(number); // flutter: 10 // flutter: 20 // flutter: 30 }