VOOZH about

URL: https://www.geeksforgeeks.org/dart/dart-sort-a-list/

⇱ Dart - Sort a List - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Dart - Sort a List

Last Updated : 15 Jul, 2025

The List data type 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. Sorting of the list depends on the type of list we are sorting, i.e. if we are sorting an integer list then we can use a simple sort function whereas if it is a string list then we use compareTo to sort the list.

Two main data types are stored in List:

  • Integer Lists
  • String Lists

We will learn to sort both of them in the article below.

👁 sort_in_dart


1. Sorting an Integer List

An integer list can be sorted by the simple sort function.

Example:

Output:

[-389, -11, 0, 2, 13, 32, 142, 3032]

2. Sorting a String List

The string is sorted by comparing the length in the sort function.

-

Example:

Output:

[one, two, four, three]


If we use sort without comparing the length, then:

-

Example:

Output:

[four, one, three, two]


Using the cascades method while sorting

Example:

Output:

[-389, -11, 0, 2, 13, 142]


Comment
Article Tags:
Article Tags:

Explore