Skip to content

Instantly share code, notes, and snippets.

@davidmigloz
Created May 4, 2021 07:39
Show Gist options
  • Save davidmigloz/a33ffd2f4afb87fcea3429e859bd9637 to your computer and use it in GitHub Desktop.
Save davidmigloz/a33ffd2f4afb87fcea3429e859bd9637 to your computer and use it in GitHub Desktop.
Dart vs Kotlin: collection for
void main() {
final bodyTypes = [1, 2, 3];
final children = [
"Header",
for (final type in bodyTypes) 'Body$type',
"Footer"
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment