菜单
Dart
dart:collection
DoubleLinkedQueue
<
E
>
添加方法
add
暗黑模式
浅色模式
描述
add
方法
void
add
(
E
value
)
override
将
value
添加到队列的末尾。
实现
void add(E value) { _sentinel._prepend(value, this); _elementCount++; }
Dart
dart:collection
DoubleLinkedQueue
<
E
>
添加方法
DoubleLinkedQueue 类
Cookie 管理控件