Dart
dart:collection
ListQueue
<
E
>
first property
first
ListQueue class
Constructors
ListQueue
from
of
Properties
first
isEmpty
iterator
last
length
single
hashCode
isNotEmpty
runtimeType
Methods
add
addAll
addFirst
addLast
cast
clear
elementAt
forEach
remove
removeFirst
removeLast
removeWhere
retainWhere
toList
toString
any
contains
every
expand
firstWhere
fold
followedBy
join
lastWhere
map
noSuchMethod
reduce
singleWhere
skip
skipWhile
take
takeWhile
toSet
where
whereType
Operators
operator ==
first property
E
first
Implementation
E get first { if (_head == _tail) throw IterableElementError.noElement(); return _table[_head]; }