first 属性

E first
覆盖

第一个元素。

如果 this 为空,则抛出 StateError。否则返回迭代顺序中的第一个元素,相当于 this.elementAt(0)

实现

E get first => _sentinel._nextLink!.element;