Flutter
quiver.collection
DelegatingQueue
<
E
>
addLast method
addLast
DelegatingQueue class
Constructors
DelegatingQueue
Properties
delegate
first
hashCode
isEmpty
isNotEmpty
iterator
last
length
runtimeType
single
Methods
add
addAll
addFirst
addLast
cast
clear
remove
removeFirst
removeLast
removeWhere
retainWhere
retype
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 ==
addLast method
void
addLast
(
E
value
)
override
Adds
value
at the end of the queue.
Implementation
void addLast(E value) => delegate.addLast(value);