Category Archive: List

Jan
08
2012

List in Dart. Part 1

We start creating a list:


main() {
  var list = [1,2,3];
  print( list is List ); // true

  var list2 = ["This", "is", "dartExperience"];
  print( list2 is List ); // true
}

Read the rest of this entry »

Permanent link to this article: http://www.dartexperience.com/en/2012/01/08/list-in-dart-part-1/