previous属性

E? previous

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

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

实现

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