Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created February 10, 2021 17:13
Show Gist options
  • Save marcossevilla/61912439e7b03cee1ca0906875b0090a to your computer and use it in GitHub Desktop.
Save marcossevilla/61912439e7b03cee1ca0906875b0090a to your computer and use it in GitHub Desktop.
void main() {
final aList = [3, 6, 7, 9];
final aMap = {'name': 'Marcos', 'age': 21};
final immutableList = ilist(aList.map((e) => e));
final immutableMap = imap(aMap);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment