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