previous 属性

E? previous

此元素在其链表中的前驱。

如果没有前驱或者此条目当前不在任何链表中,则该值为 null

实现

E? get previous {
  if (_list == null || identical(this, _list!.first)) return null;
  return _previous;
}