Dart List.length屬性返回列表的元素個數(大小)。
List.length
語法
範例
void main() { var lst = new List(); lst.add(12); lst.add(13); print("The length of the list is : ${lst.length}"); }
執行上面範例程式碼,得到以下結果 -
The length of the list is : 2