previous 属性
此元素在其链表中的前驱。
如果没有前驱或者此条目当前不在任何链表中,则该值为 null
。
实现
E? get previous {
if (_list == null || identical(this, _list!.first)) return null;
return _previous;
}
此元素在其链表中的前驱。
如果没有前驱或者此条目当前不在任何链表中,则该值为 null
。
E? get previous {
if (_list == null || identical(this, _list!.first)) return null;
return _previous;
}