Skip to content

Instantly share code, notes, and snippets.

@zohaib304
Created July 28, 2022 08:36
Show Gist options
  • Save zohaib304/e1b43d4da95c041bac568dc9757877ae to your computer and use it in GitHub Desktop.
Save zohaib304/e1b43d4da95c041bac568dc9757877ae to your computer and use it in GitHub Desktop.
Dart List of Objects

Dart List of Objects

Created with <3 with dartpad.dev.

void main() {
List<Map<String, dynamic>> myList = [
{
"Name": "Vent"
},
{
"Name": "Product"
},
];
print(myList);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment