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
Do you want to do this in a specific language?
in dart
Recommended threads
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- I recently applied for the free plan und...
I recently applied for the free plan under the GitHub Student Developer Pack. However, my billing status still shows $15, and it mentions that this amount will ...
- Bug Report: Appwrite Console UI Issue on...
Steps to Reproduce: - Navigate to any collection page in the Appwrite console UI. - Open the menu and click on "Create Collection." - Observe that the dialog to...