Do’s and Don’ts when you use List in your DART CODE !!

Lists are the most loved data structure by Flutter Developers. But there are some mistakes that even Sr. Developers might do, which doesn’t affect the user, but highly affect the performance of your app! So let’s see them one by one.

Image Copyright to the respective owner

Let’s suppose we have a list of int type as follows:

1. Add Elements:

Now, to add elements, we have the following 4 methods:

  • .add(E value): This method adds a single element of type E (here int, as we have List<int>) at the end of the list.
  • .addAll(List<E> value): This method adds all elements present in the list into another list on which addAll is used.
  • .insert(int index, E element): This method inserts an element of type E at the mentioned index into the list.
  • .insertAll(int index, List<E> value): This method inserts the list at the mentioned index into the list on which insertAll is used.

These methods can be used if you wish to add single elements in your list.

Now, if you wish to add some initial values to our list, usually we use for loop as follows:

However, for loops should be restricted as much as possible! It takes a lot of resources.

To do the above thing, we can use the .generate method of List class as follows:

The output of the above will be:

This takes up less memory compared to for loop.

2. Remove Element:

  • To remove a particular element, we can use This will remove the first occurrence of in the List. Eg: This will remove the value from the list _items.
  • To remove the last element from the list, we can use . Eg: . This will remove the last element (here value ) from the list
  • To remove element at a particular index, we can use . Eg: . This will remove the value of .

Now, let’s say we want to remove all the even numbers from the list. We can do this in following ways:

  • Using for loop (don’t use):

Again, use for loop as least as possible!

  • Using for-each loop (better than but still, we have one better solution for this):

However, if you directly do the above code, you will get an exception

It says that you can’t remove elements at the same time while accessing it. So, to use for-each, you need to assign the list to a list, remove data from list and again assign list to list, while looping on .

So, you can see this is a lot of code just to remove some elements.

  • Using
    This is one of the most efficient methods to remove elements based on some condition!

3. Update Element:

To update a particular element, we don’t have any inbuilt method. The obvious 2 solutions are using and loop. But they are not so efficient. So here’s a trick for the same:

We first converted our list into map and then made updates for each element. Then again we converted the map into a list and assign it back to

Hope you enjoyed this article!

If you loved it, you can Buy Me A Coffee!

Don’t forget to connect with me on:

Don’t stop, until you are breathing!💙
- Abhishek Doshi

--

--

Google Developer Expert — Dart, Flutter & Firebase 💙💛

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store