length 属性

int length
override

此列表中对象的数量。

列表的有效索引是从 0length - 1

final numbers = <int>[1, 2, 3];
print(numbers.length); // 3

实现

int get length => _source.length;
void length=(int newLength)
inherited

不可修改的列表不支持此操作。

实现

set length(int newLength) {
  throw new UnsupportedError(
      "Cannot change the length of an unmodifiable list");
}