add 方法

void add(
  1. E entry
)

entry 添加到链表的末尾。

实现

void add(E entry) {
  _insertBefore(_first, entry, updateFirst: false);
}