menu
Dart
dart:collection
ListQueue
<
E
>
add method
add
brightness_4
brightness_5
description
add
method
void
add
(
E
value
)
override
Adds
value
at the end of the queue.
Implementation
void add(E value) { _add(value); }
Dart
dart:collection
ListQueue
<
E
>
add method
ListQueue class
Constructors
ListQueue
from
of
Properties
first
hashCode
isEmpty
isNotEmpty
iterator
last
length
runtimeType
single
Methods
add
addAll
addFirst
addLast
any
cast
clear
contains
elementAt
every
expand
firstWhere
fold
followedBy
forEach
join
lastWhere
map
noSuchMethod
reduce
remove
removeFirst
removeLast
removeWhere
retainWhere
singleWhere
skip
skipWhile
take
takeWhile
toList
toSet
toString
where
whereType
Operators
operator ==