菜单
Dart
dart:collection
LinkedList
<
E extends LinkedListEntry<
E
>
>
addAll 方法
addAll
暗色模式
亮色模式
描述
addAll
方法
void
addAll
(
Iterable
<
E
>
entries
)
将
entries
添加到链表的末尾。
实现
void addAll(Iterable<E> entries) { entries.forEach(add); }
Dart
dart:collection
LinkedList
<
E extends LinkedListEntry<
E
>
>
addAll 方法
LinkedList 类
Cookie 管理控件