Dart Continue Statement
for (int i = 1; i <= 5; i++) { if (i == 3) { continue; } // Skips 3 print(i); } /* Output 1 2 4 5 */