Skip to content

Instantly share code, notes, and snippets.

@PiN73
Created March 1, 2020 20:32
Show Gist options
  • Save PiN73/6384e51a0cd8c57f8c9ded8dfe6acb69 to your computer and use it in GitHub Desktop.
Save PiN73/6384e51a0cd8c57f8c9ded8dfe6acb69 to your computer and use it in GitHub Desktop.
Dart map assign
void main() {
Map<int, MapEntry<String, String>> m = {};
m[5] = MapEntry("five", "5");
print(m);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment