Skip to content

Instantly share code, notes, and snippets.

@mpfaff
Created May 31, 2019 20:55
Show Gist options
  • Save mpfaff/7b1e631229109150ebe96c32d43f3abb to your computer and use it in GitHub Desktop.
Save mpfaff/7b1e631229109150ebe96c32d43f3abb to your computer and use it in GitHub Desktop.
Idiom: Iterate over Map keys and values
void main() {
var mymap = {'a':'b', 'c':1};
mymap.forEach((k, v) => print('Key=$k, Value=$v'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment