next 属性
此元素在其链表中的后继元素。
如果没有后继元素或在链表中没有此条目,则值为 null。
实现
E? get next {
  if (_list == null || identical(_list!.first, _next)) return null;
  return _next;
}此元素在其链表中的后继元素。
如果没有后继元素或在链表中没有此条目,则值为 null。
E? get next {
  if (_list == null || identical(_list!.first, _next)) return null;
  return _next;
}