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