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
}
Permanent link to this article: http://www.dartexperience.com/en/2012/01/08/list-in-dart-part-1/
Recent Comments