next 属性

E? next

此元素在链表中的后继元素。

如果没有后继元素或在链表中没有任何条目,则该值是 null

实现

E? get next {
  if (_list == null || identical(_list!.first, _next)) return null;
  return _next;
}