Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Last active June 24, 2023 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Deleplace/3b0c3682f98d3d015072c576f7a6c2f3 to your computer and use it in GitHub Desktop.
Save Deleplace/3b0c3682f98d3d015072c576f7a6c2f3 to your computer and use it in GitHub Desktop.
Clear map
void main() {
var m = {
"one": 1,
"two": 2
};
var p = m;
print(m);
print(p);
m.clear();
print(m);
print(p);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment