VOOZH about

URL: https://www.geeksforgeeks.org/dart/how-to-combine-lists-in-dart/

⇱ How to Combine Lists in Dart? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Combine Lists in Dart?

Last Updated : 15 Jul, 2025

The List data type in Dart programming is similar to arrays in other programming languages. A list is used to represent a collection of objects. It is an ordered group of objects. The core libraries in Dart are responsible for the existence of the List class, its creation, and manipulation.

There are 5 ways to combine two or more lists:

  • Using the addAll() method, all the elements of another list are added to the existing list.
  • Creating a new list by adding two or more lists using addAll() method of the list.
  • Creating a new list by adding two or more lists using the expand() method of the list.
  • Use the + operator to combine lists.
  • Using the spread operator to combine lists.

1. Using addAll() Method (on an existing list)

We can add all the elements of the other list to the existing list by the use of addAll() method.

To learn about this method, you can follow this article.

Example:


Output:

[Welcome, to, GeeksForGeeks]


2. Creating a New List with addAll()

We can add all the elements of the list one after another to a new list by the use of addAll() method in Dart.

Example:


Output:

[Welcome, to, GeeksForGeeks]


3. Using expand() Method

We can add all the elements of the list one after another to a new list by the use of the expand() method in Dart. This is generally used to add more than two lists together.

Example:


Output:

[Welcome, to, GeeksForGeeks]


4. Using the + Operator

We can also add lists together by the use of the + operator in Dart. This method was introduced in the Dart 2.0 update.

Example:


Output:

[Welcome, to, GeeksForGeeks]


5. Using the Spread Operator (...)

As of Dart 2.3 update, one can also use the spread operator to combine the list in Dart.

Example:


Output:

[Welcome, to, GeeksForGeeks]
Comment
Article Tags:
Article Tags:

Explore