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