#General list Question

3 messages · Page 1 of 1 (latest)

late birch
#

Hey I know the use case of this platform is for appwrite and it helps me a lot. but today I wanna ask you a general question related with list object

[{'id': 1, 'name':'flutter', 'title':'dart'},

{'id': 35, 'name':'flutter', 'title':'dart'},

{'id': 93, 'name':'flutter', 'title':'dart'},
  
{'id': 82, 'name':'flutter', 'title':'dart'},

{'id': 28, 'name':'flutter', 'title':'dart'},
];

I have this list for example, and how can I achieve as below

[{'id': 1, 'name':'flutter'},

{'id': 35, 'name':'flutter'},

{'id': 93, 'name':'flutter'},
  
{'id': 82, 'name':'flutter'},

{'id': 28, 'name':'flutter'},
];

Remove title key from the list , Any help thanks

deep elk
#

Do you want to do this in a specific language?

late birch
#

in dart